我遇到了opencart
项目的网址问题。
我安装了oepncart
项目,但它的网址是:
http://www.exmaple.com/opencart/upload
但我希望将它显示为:
http://www.exmple.com/demo
使用.htaccess
我该如何改变?
请帮助。
答案 0 :(得分:0)
尝试在文档根目录中的htaccess文件中添加它:
RewriteEngine On
RewriteRule ^demo$ /opencart/upload [L]
答案 1 :(得分:0)
我认为您需要修改RewriteBase
以指向文档根目录中的Your子目录:
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]