0

我有一个opencart项目的 URL 问题。

我安装了oepncart项目,但它的 URL 是:

http://www.exmaple.com/opencart/upload

但我想像这样显示它:

http://www.exmple.com/demo 使用.htaccess

我怎样才能改变它?

请任何人帮忙。

4

2 回答 2

0

我认为您需要修改RewriteBase从文档根目录指向您的子目录:

RewriteEngine On                # Already in there

RewriteBase /opencart/upload/   # Already there but with value / only

然后当然使用重写规则:

RewriteRule ^demo$ /opencart/upload [QSA]   # Add this before the next line that is already there
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
于 2013-10-24T10:13:21.283 回答
0

尝试将其添加到文档根目录的 htaccess 文件中:

RewriteEngine On
RewriteRule ^demo$ /opencart/upload [L]
于 2013-10-23T18:13:03.223 回答