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