nginx下wordpress子目录伪静态设置步骤详解
发布:smiling 来源: PHP粉丝网 添加日期:2015-10-16 11:33:48 浏览: 评论:0
子目录伪静态可以让我们不带参数并显示为目录或html了,这样有利于搜索引擎对网站的抓取了,下面我们来看一些例子.
网站访问目录为http://show.abc.com/,但是wordpress是装在他下面的manage目录中的,所以访问到的首页也该是http://show.abc.com/manage/
而wordpress默认访问文章的URL是http://show.abc.com/manage/?p=12 的形式,需要做伪静态使文章访问形式为http://show.abc.com/manage/12
在nginx中配置如下:
- server {
- listen 80;
- server_name show.phpfensi.com;
- access_log logs/access_show.abc.com.log;
- error_log logs/error_show.abc.com.log;
- index index.html index.php;
- location / {
- root /web/html/show;
- }
- location /manage/ {
- try_files $uri $uri/ /manage/index.php;
- }
- location /manage/wp-content {
- alias /web/html/show/manage/wp-content;
- }
- location /manage/wp-includes {
- alias /web/html/show/manage/wp-includes;
- }
- location /manage/wp-admin {
- alias /web/html/show/manage/wp-admin;
- }
- location ~ \.php$ {
- root /web/html/show;
- fastcgi_pass 127.0.0.1:9001;
- fastcgi_param SCRIPT_FILENAME /web/html/show$fastcgi_script_name;
- include fastcgi_params;
- }
- }
Tags: nginx子目录 wordpress伪静态
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)