我有这种网址:
http://dev.myproject.local/index.php?route=product/category/feature
我希望如此:
http://dev.myproject.local/featurepage
我的htaccess中有这个
RewriteEngine On
RewriteRule ^index.php?route=product/category/feature$ /featurepage/ [L]
但它没有用。
答案 0 :(得分:1)
您可以尝试以下解决方案。我上次用过类似的东西。
RewriteCond %{THE_REQUEST} \ /index\.php\?_route_=?([^&\ ]*)
RewriteRule ^ /%1? [L,R]