宝塔nginx404配置、301配置,亲测有效的方法!
一、404配置
找到:网站=>配置文件
error_page 404 /404.html;
location = /404.html {
root /www/server/nginx/html;
}
然后在:root /www/server/nginx/html 配置404.html即可生效;
二、301配置
同样找到:网站=>配置文件
if ($host ~ '^fxword.cn'){
return 301 https://www.fxword.cn$request_uri;
}
if ($request_uri = /analysts-31-26-1.html){
return 301 https://www.fxword.cn/certifi-40-52-1.html;
}
错误的写法:
if ($request_uri = https://www.fxword.cn/analysts-31-26-1.html){
return 301 https://www.fxword.cn/certifi-40-52-1.html;
}
if条件里面不能带www喔!