0

在这个网站:

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

我将 codeigniter 与基于段的 url 一起使用

它在本地主机(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
4

1 回答 1

0

我将 config.php 编辑为此:

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

它现在工作了!^_^

于 2013-05-18T09:25:56.923 回答