基于段的URL不工作codeigniter

时间:2013-05-17 02:03:25

标签: url codeigniter-2 segment

在这个网站:

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

1 个答案:

答案 0 :(得分:0)

我将config.php编辑为:

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

现在已经奏效了! ^ _ ^