.htaccess redirect all pages under a folder to new domain

前端 未结 1 1709
失恋的感觉
失恋的感觉 2020-12-08 16:47

I have some files placed under a particular folder in my old domain like this: http://www.olddomain.com/folder1/.

I want to redirect all requests that try to access

相关标签:
1条回答
  • 2020-12-08 17:17

    Give this a shot.

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    
    RewriteRule ^folder1(.*)$ http://www.newdomain.com/$1 [L,R=301]
    
    </IfModule>
    
    0 讨论(0)
提交回复
热议问题