2012-10-09 47 views
0

我在codeigniter中有一个项目,我有一个.htaccess文件,我用来隐藏用户的index.php页面。在本地机器上,当项目是在Windows操作系统中,但是当我在linux(ubuntu发行版)中测试时.htaccess功能不起作用。任何关于我能为linux做什么的建议都非常感谢。 我的.htaccess文件:我的.htaccess文件有什么问题,以便它可以在linux上工作?

<IfModule mod_rewrite.c> 

    RewriteEngine On 
    RewriteBase /myproject/ 

    ### Canonicalize codeigniter URLs 

    # If your default controller is something other than 
    # "welcome" you should probably change this 
    RewriteRule ^(platform(/index)?)/?$/[L,R=301] 
    RewriteRule ^(.*)/index/?$ $1 [L,R=301] 

    # Removes trailing slashes (prevents SEO duplicate content issues) 
    RewriteCond %{REQUEST_FILENAME} !-d 
    RewriteRule ^(.+)/$ $1 [L,R=301] 

    # Enforce www 
    # If you have subdomains, you can add them to 
    # the list using the "|" (OR) regex operator 
    RewriteCond %{HTTP_HOST} !^(localhost|myproject) [NC] 
    RewriteRule ^(.*)$ http://localhost/myproject/$1 [L,R=301] 



    # Removes access to the system folder by users. 
    # Additionally this will allow you to create a System.php controller, 
    # previously this would not have been possible. 
    # 'system' can be replaced if you have renamed your system folder. 
    RewriteCond %{REQUEST_URI} ^system.* 
    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> 

<IfModule !mod_rewrite.c> 

    # Without mod_rewrite, route 404's to the front controller 
    ErrorDocument 404 /index.php 

</IfModule> 

回答

1

有许多原因,但那些我总是先检查:

的AllowOverride

检查主要的Apache配置。默认情况下,您的文档根目录的AllowOverride指令可能设置为无。在这种情况下,Apache将忽略htaccess文件。

http://httpd.apache.org/docs/2.2/mod/core.html#allowoverride

模块缺失

因为你的命令,被包裹在一个IfModule声明。如果您的Linux机器没有该模块,则该命令将不会被执行。

提示

要查看是否htacess正在读取,只是把一些胡说八道的文件的顶部任何ifmodule语句,例如外“dkdkwei239d”或任何不是合法指令的内容。

您应该得到500服务器错误。如果没有,那么Apache不会读取.htaccess文件。

如果您确实收到500错误,那么Apache正在读取该文件。

尝试删除Ifmodule语句。如果错误返回,那么您可能会丢失重写模块。

+0

正当我在开始时添加此非字符串gfgfgfgfgfgfg appication崩溃服务器遇到内部错误或配置错误,无法完成您的请求。 请与服务器管理员webmaster @ localhost联系,并告知他们发生错误的时间以及您可能已经造成错误的任何事情。 有关此错误的更多信息可能在服务器错误日志中可用。 http:// localhost/myproject上的Apache/2.2.22(Ubuntu)服务器端口49131 – user1718215

+0

因此,在Linux服务器上托管之后发生这种情况是很不可能的。然后为了测试这个错误,我使用的是本地linux机器,错误是一样的! – user1718215

相关问题