【问题标题】:How to to shorten a URL using HTACCESS如何使用 HTACCESS 缩短 URL
【发布时间】:2025-12-15 13:55:02
【问题描述】:

我有这种网址:

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]

但它不起作用。

【问题讨论】:

    标签: php .htaccess opencart


    【解决方案1】:

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

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

    【讨论】: