我想使用 htaccess 缩短我的网址
http://mydomain.com/filename/categoryname/catid/subcategoryname/subid/productname/productid/
至
http://mydomain.com/productname/
一直在寻找如何实现这一目标的几个小时,但似乎没有任何效果。
我想使用 htaccess 缩短我的网址
http://mydomain.com/filename/categoryname/catid/subcategoryname/subid/productname/productid/
至
http://mydomain.com/productname/
一直在寻找如何实现这一目标的几个小时,但似乎没有任何效果。
你试过 mod_rewrite 吗?
RewriteEngine on
RewriteMap shortcodes txt:/path/to/file/shortcodes.txt
RewriteRule ^/(\d+)$ ${shortcodes:$1} [R=permanent,L]
例如,在您的情况下,这可能如下所示:
productname /filename/categoryname/catid/subcategoryname/subid/productname/productid/
这应该在 VirtualHost 定义中