我正在尝试从
重写我的Wordpress安装的Blog-Urlshttp://www.example.com/2016/11/title-of-blog-article
到
http://www.example.com/blog/title-of-blog-article
我尝试了很多RewriteRules,但我没有得到它。
这就是我的尝试:
RewriteRule ^/[0-9]+/[0-9]+/(.+)$ blog/$1 [R=301,L]
我不明白为什么它不起作用......: - /
答案 0 :(得分:0)
RewriteRule ^/[0-9]{4}/[0-9]{2}/(.*)$ /blog/$1 [R=301,L]
试试这个
答案 1 :(得分:0)
我明白了! 我的失败是
的尾随斜线RewriteRule ^[0-9]+/[0-9]+/(.+)$ /blog/$1 [R=301,L]
它完美无缺。