2013-10-23 59 views
0

我有一個網址opencart項目的問題。如何使用htaccess更改opencart項目的URL?

我安裝oepncart項目,但它的網址是:

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

但我想以顯示它想:使用

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

我該如何改變呢?

請任何人幫忙。在htaccess文件在你的文檔根目錄

回答

0

嘗試添加此:

RewriteEngine On 
RewriteRule ^demo$ /opencart/upload [L] 
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]