ZBLOG NGINX設(shè)置 301重定向一個(gè)網(wǎng)址到另外一個(gè)網(wǎng)址!阿里云配置!
location / {
if (-f $request_filename/index.html) {rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php) {
rewrite (.*) $1/index.php;
}
if (!-f $request_filename) {
rewrite (.*) /index.php;
}
if ($request_uri = /abc.html) {
return 301 URL地址;
}
}
location ~ /\.ht {
deny all;
}