如何使用HTACCESS缩短URL

时间:2017-05-11 02:53:06

标签: php .htaccess opencart

我有这种网址:

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]

但它没有用。

1 个答案:

答案 0 :(得分:1)

您可以尝试以下解决方案。我上次用过类似的东西。

RewriteCond %{THE_REQUEST} \ /index\.php\?_route_=?([^&\ ]*)
RewriteRule ^ /%1? [L,R]