我发现了有关CodeIgniter和mod-rewrite问题的几个相关问题,但是,我还没有找到解决我目前遇到的问题的方法。
我目前有: mywebsiteurl.netfirms.com/mywebsite/index.php/admin/login
我想要实现的是从URL中删除index.php,如下所示: mywebsiteurl.netfirms.com/mywebsite/admin/login
然而,在尝试了几次我在StackOverflow上找到的修复后,我最终偶然发现了一个写得很好的小导游here。
我修改了我的Mod-Rewrite,如下所示:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
### Canonicalize codeigniter URLs
# If your default controller is something other than
# "welcome" you should probably change this
RewriteRule ^(home(/index)?|index(\.php)?)/?$ / [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} !^(www|subdomain) [NC]
# RewriteRule ^(.*)$ http://www.domain.tld/$1 [L,R=301]
# Enforce NO www
#RewriteCond %{HTTP_HOST} ^www [NC]
#RewriteRule ^(.*)$ http://domain.tld/$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]
# Without mod_rewrite, route 404's to the front controller
ErrorDocument 404 /index.php
即使在实施此mod-rewrite后,如果我尝试访问mywebsiteurl.netfirms.com/mywebsite/admin/login,我也会收到404错误。如果我去mywebsiteurl.netfirms.com/mywebsite/index.php/admin/login,我可以正常加载页面。
我的问题归结为如何为Code Igniter正确配置我的mod重写?也许我错过了一些设置?我对mod-rewrite不够熟悉,不知道出了什么问题。
我还应该提一下,我已经在我的Code Igniter配置文件中进行了更改。
$config['index_page'] = '';
有没有人对我在这里做错了什么有任何想法?
提前致谢。
答案 0 :(得分:1)
我的htaccess文件位于public_html / mywebsite目录中,可由mywebsiteurl.netfirms.com/mywebsite /
访问
您需要更新重写基础和另一条规则:
RewriteBase /
需要:
RewriteBase /mywebsite/
这一行
RewriteRule ^(home(/index)?|index(\.php)?)/?$ / [L,R=301]
需要
RewriteRule ^(home(/index)?|index(\.php)?)/?$ /mywebsite/ [L,R=301]
这需要删除前导斜杠:
RewriteRule ^(.*)$ /index.php/$1 [L]
所以它就像:
RewriteRule ^(.*)$ index.php/$1 [L]
当规则的目标中没有前导斜杠时,它是相对URI路径并使用基数来确定根。由于您的内容位于mywebsite
,因此基数需要反映出来。
答案 1 :(得分:0)
我想我刚刚为您的问题找到了更好的解决方案,而且非常简单。 在CodeIgniter的配置文件中,保留空白index_page和base_url:
$config['base_url'] = '';
$config['index_page'] = '';
CodeIgniter会将自己视为您的基本路径,并且不会在uri中使用index.php段。
然后在你的.htaccess文件中,使用apply指令将所有网址重定向到你的index.php文件夹和文件名:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
这将完成这项工作,您无需在更改项目根文件夹时更改任何配置文件中的任何内容。
希望有所帮助。