.htaccess 301 redirect of single page

前端 未结 6 1817
挽巷
挽巷 2020-11-29 02:38

After a site redesign, I\'ve got a couple of pages that need to be redirected. Everything is staying on the same domain, just a couple of things have been reorganised and/or

6条回答
  •  攒了一身酷
    2020-11-29 03:13

    RedirectMatch uses a regular expression that is matched against the URL path. And your regular expression /contact.php just means any URL path that contains /contact.php but not just any URL path that is exactly /contact.php. So use the anchors for the start and end of the string (^ and $):

    RedirectMatch 301 ^/contact\.php$ /contact-us.php
    

提交回复
热议问题