Redirect only WordPress homepage with a 301 redirect

后端 未结 8 668
天命终不由人
天命终不由人 2021-01-14 21:53

I have a blog, lets say example.com and another blog installed in example.com/np which is not multisite but a different WordPress installation.

8条回答
  •  情歌与酒
    2021-01-14 22:17

    Options +FollowSymLinks
    
    
    RewriteEngine On
    RewriteRule (.*) http://www.Your domain/$1 [R=301,L]
    
    
    # BEGIN WordPress
    
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    
    # END WordPress

提交回复
热议问题