企业级NGINX的重定向rewrite

vim /usr/local/nginx/conf/nginx.conf

server {
    listen 80;
    server_name www.ftl.com;
    rewrite ^/(.*) http://www.ftl.com/$1 permanent;
}

猜你喜欢

转载自www.cnblogs.com/ftl1012/p/9296193.html