nginx redict root / to /wordpress/

Nginx 重定向根目录到wordpress目录

Since WordPress is installed under /wordpress/ url. so need redictly root url /

hear is the code to redirect

so at nginx.conf under server block add below

location = / {
        return 301 /wordpress/;
}

301 is http redirect code. the browser will do redirect after get this code. so will redirect / to /wordpress/.

Leave a Reply