代码点火器中的 URL 重定向错误,我正在使用端口 8080 "Apache/2.4.7 (Ubuntu) Server at sandbox.dev Port 8080"



我用的是VirtualBox,里面安装了LAMP。现在我在一个PHP编码器项目上工作。问题: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的实时服务器上工作,有没有办法在本地机器上修复这个问题?

此问题已解决:

解:

<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]

最新更新