0
我有一個網址opencart
項目的問題。如何使用htaccess更改opencart項目的URL?
我安裝oepncart
項目,但它的網址是:
http://www.exmaple.com/opencart/upload
但我想以顯示它想:使用
http://www.exmple.com/demo
.htaccess
我該如何改變呢?
請任何人幫忙。在htaccess文件在你的文檔根目錄
我有一個網址opencart
項目的問題。如何使用htaccess更改opencart項目的URL?
我安裝oepncart
項目,但它的網址是:
http://www.exmaple.com/opencart/upload
但我想以顯示它想:使用
http://www.exmple.com/demo
.htaccess
我該如何改變呢?
請任何人幫忙。在htaccess文件在你的文檔根目錄
嘗試添加此:
RewriteEngine On
RewriteRule ^demo$ /opencart/upload [L]
我想你會需要修改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]