开发者

Using htaccess Files for Pretty URLS - Opencart

开发者 https://www.devze.com 2023-04-07 22:43 出处:网络
how to write htaccess if my opencart home page is http://www.stico.com.my/index.php?route=product/category&path=20_59 , i want url to be like this

how to write htaccess if my opencart home page is http://www.stico.com.my/index.php?route=product/category&path=20_59 , i want url to be like this http://www.stico.com.my

My client want page product category set as homepage. i hope someone can h开发者_运维百科elp me.


Add this to your .htaccess below the existing RewriteRules

RewriteCond %{QUERY_STRING} =""
RewriteRule ^index.php$ index.php?route=product/category&path=20_59 [L]

Optional, if you want Pretty URLs

You should be able to use SEO URLs to get pretty URLs for your products.

Admin > System > Settings > Edit YOUR_STORE > Server: Make sure Use SEO URLs is checked and make sure the htaccess.txt file has been renamed to .htaccess.

0

精彩评论

暂无评论...
验证码 换一张
取 消