我有一个opencart
项目的 URL 问题。
我安装了oepncart
项目,但它的 URL 是:
http://www.exmaple.com/opencart/upload
但我想像这样显示它:
http://www.exmple.com/demo
使用.htaccess
我怎样才能改变它?
请任何人帮忙。
我认为您需要修改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]
尝试将其添加到文档根目录的 htaccess 文件中:
RewriteEngine On
RewriteRule ^demo$ /opencart/upload [L]