How to redirect a specific page using htaccess

后端 未结 1 928
旧时难觅i
旧时难觅i 2021-01-22 00:22

I\'ve looked all over for the htaccess code to redirect a single page and haven\'t had any luck with many solutions.

Basically I need to redirect this:

/         


        
相关标签:
1条回答
  • 2021-01-22 00:42

    In the htaccess file in your document root, you can add either this:

    RedirectMatch 301 ^/example/my-stuff/$ /example/home/
    

    Or you can use mod_rewrite instead:

    RewriteEngine On
    RewriteRule ^example/my-stuff/$ /example/home/ [L,R=301]
    
    0 讨论(0)
提交回复
热议问题