【发布时间】:2021-10-01 19:53:24
【问题描述】:
假设我在 WordPress 中有这样的动态 URL:
https://example.com/category/post-title/?format=pdf
https://example.com/category2/post-title2/?format=pdf
我希望它们被重写为:
https://example.com/category/post-title.pdf
https://example.com/category2/post-title2.pdf
我如何使用 htaccess 做到这一点?
我尝试了类似的方法,但它不起作用:
#Options +FollowSymLinks
#RewriteEngine on
#RewriteRule ^.(.*) /?format=$1
【问题讨论】:
标签: wordpress .htaccess mod-rewrite