0
我閱讀所有可用Q & A但我仍然沒有找到任何解決方案。Opencart 301重定向錯誤
我正在運行一個網上商店使用wordpress ..現在我移動到opencart,因爲支付網關選項。但我有301 URL重定向問題..
http://website.com/2011/01/my-product-name/
到
http://website.com/my-product-name.html
我的htaccess代碼:
RewriteEngine On
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#### Rewrite Code ####
RewriteRule ^(.*)\?*$ index.php?_route_=$1 [L,QSA]
Redirect 301 ^/2011/01/my-product-name/$ http://website.com/my-product-name.html
當我嘗試它重定向重定向到
後 http://website.com/my-product-name.html/?_route_=2011/01/my-product-name/
我不知道爲什麼添加? 路線 = inurl和所有其他的鏈接?
有沒有可用的解決方案?
老WordPress的帖子我剛剛找到解決方案.. 我需要添加分機嗎?重定向RULE結束時問號這樣.. 重定向301/2010/10/my-product-name/http://website.com/my-product-name.html? 重定向完美工作.. 謝謝, – Muhammad