任何人都知道如何重定向
域/博客/208-%-top.html
至:
域/博客/208-top.html
在 Joomla?
以下均无效:
RewriteRule ^blog/208-%-top.html$ 208-top.html [R=301,L]
RewriteRule ^blog/208-\%-top.html$ 208-top.html [R=301,L]
RewriteRule ^blog/208-.*-top.html$ 208-top.html [R=301,L]
它适用于: url 有 %20 或 %25 并且在 htaccess 中有以下
RewriteRule ^blog/208-%20-top.html$ 208-top.html [R=301,L]
RewriteRule ^blog/208-%25-top.html$ 208-top.html [R=301,L]
但问题是博客文章只有 %。有什么办法可以解决这个问题吗?