如果我去:
我看到了我的测试页面。如果我去:
我得到一个404页面。我不是指Codeigniter 404页面,而是默认的apache。代码库是相同的。
主页工作正常,但任何内页404.这是我的根.htaccess文件的内容:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# Removes access to the system folder by users. Additionally this will allow you to create a System.php controller, 'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
# When your application folder isn't in the system folder. This snippet prevents user access to the application folder. Rename 'application' to your applications folder name.
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
# Checks to see if the user is attempting to access a valid file, such as an image or css document, if this isn't true it sends the request to index.php.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
在使用phpinfo()验证的服务器上启用了Mod重写。我错过了什么吗?
答案 0 :(得分:1)
当您看到Apache的404
状态页而不是CodeIgniter的404
时,mod_rewrite不活动。
phpinfo
仅告诉您,是否加载了模块,而不是正确配置模块。如果mod_rewrite
处于活动状态,您可以通过向<IfModule mod_rewrite.c>...</IfModule>
内的.htaccess添加垃圾来可靠地检查。当它处于活动状态时,您将收到500
服务器错误。
要在.htaccess
个文件中使用mod_rewrite
,必须为相应的目录设置AllowOverride
和Options
,例如
AllowOverride FileInfo
Options +FollowSymLinks
甚至
AllowOverride All # default if <= 2.3.8
Options All # this is the default
不相关,但%{REQUEST_URI}
以斜杠开头,因此前两个规则(这些RewriteCond
s)将永远不会匹配。
答案 1 :(得分:0)
您是否检查了网站的基本网址是否设置为您的本地地址,如果您在自己的网站上安装了CI,那么您的基本网址可能会设置为该网址。尝试在配置文件中验证它。