我有一个应用程序,当使用完整的URL时效果很好:sitename.com/index.php/foo/但是当我使用HTaccess删除index.php时,它似乎没有按预期工作。无论我访问哪个页面,我只看到主页。 htaccess文件正在执行某些操作,因为没有该行我会收到404错误。
RewriteEngine on
RewriteCond $1 !^(index\.php|assets|file-manager-files|robots\.txt|favicon\.ico)
RewriteRule ^(.*)$ /index.php/$1 [L]
思想?
在我的测试网站上,一切正常。这是一个需要调整的服务器设置吗?
答案 0 :(得分:1)
使用Codeigniter,你需要这样的东西:
<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,
#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]
#When your application folder isn't in the system folder
#This snippet prevents user access to the application folder
#Submitted by: Fabdrol
#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>
<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin
ErrorDocument 404 /index.php
</IfModule>
如果不起作用,请检查以确保$config['index_page'] = '';
和.htaccess指令设置正确:
<Directory "/some/absolute/path/htdocs">
Options Indexes Includes FollowSymLinks MultiViews
AllowOverride AuthConfig FileInfo
Order allow,deny
Allow from all
</Directory>
我已经在许多操作系统配置上完成了数百次Codeigniter安装,并且始终能够使其工作,但我偶尔会遇到一些问题,我必须要有创意才能让index.php
消失。
答案 1 :(得分:0)
RewriteCond错了。在第一个参数中,您必须使用要检查的内容。例如,请求的URI,脚本文件名等。在上面的例子中,看起来你试图将$ 1(dolar和one)与Rewrite Condition的右边部分进行比较:?