嗨我需要在我的博客网站中通过.htacess对网址的特定模式进行重写规则。请看情况是,网址包含不需要省略的所有此类网址模式的类别名称301重定向到新路径< / p>
所以要点击的网址 http://www.example.com/blog/whatever/prosper-life.html
应该重定向到
http://www.example.com/blog/prosper-life.html
是否可以通过.htaccess?请帮忙
答案 0 :(得分:1)
我无论如何都不是正则表达式/ htaccess专家,但试试这个:
RewriteEngine On
RewriteRule ^blog/(\w)+\/{1}(.*)$ /blog/$2
我在http://htaccess.madewithlove.be/上测试了http://www.example.com/blog/your/bankruptcy/whatever/more/sub/parts/afile.html是链接, 它删除了第一个子部分。
这只是表明它实际上是可能的。那里可能有更好的解决方案。