Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请帮助解决这个问题:
http://www.mysite.com/sale/category/subcategory
如何使用 mod_rewrite将其更改为http://www.mysite.com/subcategory
在 .htaccess 中试试这个:
Options +FollowSymLinks RewriteEngine On RewriteRule ^sale/([A-Za-z0-9_ \-]+)/(.+)$ http://www.mysite.com/$2 [NC,L]