nginx 泛跳转设置怎么设置
目前只会从*.abc.com跳转到123.com,如果访问abc.com/xxxx/yyy.php会有问题,想问一下怎么设置nginx的跳转,即是访问*.abc.com/xxxx/yyy.php就会跳转到123.com ?谢谢啦 自己定一下~~ server {
listen 80;
server_name 123.com;
rewrite ^/(.*) http://abc.com/$1 permanent;
access_log off;
}
qq3184849186 发表于 2018-5-3 21:39
server {
listen 80;
server_name 123.com;
谢谢,我去试试 正则 了解一下 (
页:
[1]