You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nginx-rewrite/rewrite_test1.conf.bak

9 lines
177 B

location / {
root /usr/share/nginx/html;
if ( -f $request_filename ){
return 301 http://www.baidu.com;
}
if ( -d $request_filename ){
return 301 http://www.jd.com;
}
}