我想将所有的版面重定向到版面的首页。
例如:
www.mysite.com/section/3/article应重定向到
www.mysite.com/section/我如何使用htaccess做到这一点?
发布于 2012-08-24 22:42:51
RedirectMatch permanent ^/section/3/ http://www.mysite.com/section/index.html这会将以/section/3/开头的所有内容重定向到http://www.mysite.com/section/index.html
https://stackoverflow.com/questions/12110957
复制相似问题