【问题标题】:How to to shorten a URL using HTACCESS如何使用 HTACCESS 缩短 URL
【发布时间】:2017-05-11 02:53:06
【问题描述】:

我有这种网址:

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]
    

    【讨论】:

    猜你喜欢
    • 2013-06-22
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-09-10
    • 2012-03-27
    • 1970-01-01
    相关资源
    最近更新 更多