Permanent (301) .htaccess redirect

百般思念 提交于 2019-12-11 22:51:47

问题


I need a 301 redirect from these pages:

form/5/asd.html
form/5/12dasd.html
form/5/dasidjasd.html
form/5/pasd1.html

Always to this page: /form/12/name.html

Can you help me, because I never understand .htaccess redirects :(


回答1:


Use RedirectMatch with a wildcard, and remember to use the complete URL when specifying where to redirect to:

RedirectMatch 301 /form/5/.* www.example.com/form/12/name.html


来源:https://stackoverflow.com/questions/25081070/permanent-301-htaccess-redirect

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!