Codeigniter页面加载在localhost上,但404加载在服务器上

时间:2017-03-05 15:16:10

标签: php .htaccess codeigniter

如果我去:

http://localhost/entry

我看到了我的测试页面。如果我去:

http://examplesite.com/entry

我得到一个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重写。我错过了什么吗?

2 个答案:

答案 0 :(得分:1)

当您看到Apache的404状态页而不是CodeIgniter的404时,mod_rewrite不活动。

phpinfo仅告诉您,是否加载了模块,而不是正确配置模块。如果mod_rewrite处于活动状态,您可以通过向<IfModule mod_rewrite.c>...</IfModule>内的.htaccess添加垃圾来可靠地检查。当它处于活动状态时,您将收到500服务器错误。

要在.htaccess个文件中使用mod_rewrite,必须为相应的目录设置AllowOverrideOptions,例如

AllowOverride FileInfo
Options +FollowSymLinks

甚至

AllowOverride All # default if <= 2.3.8
Options All # this is the default

不相关,但%{REQUEST_URI}以斜杠开头,因此前两个规则(这些RewriteCond s)将永远不会匹配。

答案 1 :(得分:0)

您是否检查了网站的基本网址是否设置为您的本地地址,如果您在自己的网站上安装了CI,那么您的基本网址可能会设置为该网址。尝试在配置文件中验证它。