Redirect only WordPress homepage with a 301 redirect

后端 未结 8 599
天命终不由人
天命终不由人 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条回答
  •  梦毁少年i
    2021-01-14 22:07

    Just put this at the very top of your index.php file of your wordpress installation:

    if($_SERVER['REQUEST_URI'] == "/"){
        include('......server file directory to file you want to redirect to');
        exit;
    }
    

提交回复
热议问题