URL codeigniter 中的重定向错误,我正在使用端口 8080 "Apache/2.4.7 (Ubuntu) Server at sandbox.dev Port 8080"
Error with URL Redirection in codeigniter , I am using port 8080 "Apache/2.4.7 (Ubuntu) Server at sandbox.dev Port 8080"
我正在使用 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?/ [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 的实时服务器上一切正常,有什么方法可以在本地机器上解决这个问题吗?
此问题已解决:
解决方案:
<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/ [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/ [L]
语法:RewriteRule ^(.*)$ /<folder_name>/index.php/ [L]
我正在使用 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?/ [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 的实时服务器上一切正常,有什么方法可以在本地机器上解决这个问题吗?
此问题已解决:
解决方案:
<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/ [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/ [L]
语法:RewriteRule ^(.*)$ /<folder_name>/index.php/ [L]