我正在使用VirtualBox,其中安装了LAMP。 现在我正在开发一个PHP codeigniter项目。 问题:URL重写不起作用。 我使用端口8080而不是端口80。
重写代码使用:
`<IfModule mod_rewrite.c>
RewriteEngine On
# !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading
# slashes.
# If your page resides at
# http://www.example.com/mypage/test1
# then use
# RewriteBase /mypage/test1/
RewriteBase /
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>`
一切都在使用端口80的实时服务器上运行,有没有办法在本地机器上解决这个问题?
答案 0 :(得分:0)
此问题已得到解决:
解决方案:
<IfModule mod_rewrite.c>
RewriteEngine On
# !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading
# slashes.
# If your page resides at
# http://www.example.com/mypage/test1
# then use
# RewriteBase /mypage/test1/
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{SERVER_PORT} !^80$
RewriteRule ^(.*)$ /cistudbook.ae/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>
刚刚添加了index.php所在的文件夹名称。
RewriteRule ^(.*)$ /cistudbook.ae/index.php/$1 [L]
语法:RewriteRule ^(.*)$ /<folder_name>/index.php/$1 [L]