在这个网站:
http://www.syriadailynews.com/sdn/
我使用了codeigniter和基于段的URL
它在localhost(xampp)
中工作正常但在网站上传后,所有网址都无法正常工作
这是我的.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
答案 0 :(得分:0)
我将config.php编辑为:
$config['index_page'] = 'index.php';
$config['uri_protocol'] = 'AUTO';
现在已经奏效了! ^ _ ^