博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
typecho除了首页其他大部分网页404怎么办?
阅读量:6712 次
发布时间:2019-06-25

本文共 706 字,大约阅读时间需要 2 分钟。

server {        listen 80;        server_name blog.localhost; #绑定域名        index index.htm index.html index.php; #默认文件        root /data/webroot/blog; #网站根目录        location ~ \.php$ {                fastcgi_pass 127.0.0.1:9000;                fastcgi_index index.php;                include fastcgi_params;        }        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;        }        access_log /data/logs/access.log;        error_log /data/logs/error.log;}
除了首页其他大部分网页404怎么办? 把红色的加载nginx配置中就可以了。

转载地址:http://eahlo.baihongyu.com/

你可能感兴趣的文章
pear默认安装后一个小bug
查看>>
nginx-通过Nginx统计当前每个域名流量
查看>>
OpenSSL学习(二十五):基础-指令x509
查看>>
sql server随机函数
查看>>
WinAircrackPack 破解你邻居家的无线WIFI密码
查看>>
自定义格式化字符串
查看>>
bgp发布路由对端无法收到,原因是使用默认网段
查看>>
JQuery实现简单的服务器轮询效果
查看>>
幽灵漏洞(GHOST)影响大量Linux操作系统及其发行版(更新修复方案)
查看>>
Sunday算法
查看>>
netstat
查看>>
优朋普乐:OTT正重构电视版图
查看>>
遇到"process launch failed: Security"问题,解决的一种方法
查看>>
Ubuntu 14.04 LTC 有线网络——网线不识别,灯不亮问题
查看>>
Unity3D DLL加密
查看>>
ubuntu root用户的密码
查看>>
linux ssh配置与禁用root远程登录
查看>>
Ngios plugin for cacti(NPC)
查看>>
求数组中最长递增子序列
查看>>
前端开发面试题(收集贴)
查看>>