0

at this site:

http://www.syriadailynews.com/sdn/

I used codeigniter with segment based url

and it works fine at localhost (xampp)

but after uploded the site, all urls not working

this is my .htaccess

Options +FollowSymLinks
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
AddDefaultCharset UTF-8
Zuhair Taha
  • 2,808
  • 2
  • 35
  • 33

1 Answers1

0

I edit config.php to this:

$config['index_page'] = 'index.php';
$config['uri_protocol'] = 'AUTO';

It's worked now ! ^_^

Zuhair Taha
  • 2,808
  • 2
  • 35
  • 33