您好,欢迎来到菜鸟吧源码网-本站资源仅供学习与参考,禁止用于商业或违法行为!
  • 首 页
  • 下载APP
  • 公告:菜鸟吧APP于2024.9.15正式上线,请首页右上角进入下载,本站资源均来源于互联网及会员投稿发布,所有资源仅供学习参考研究使用,请勿商用或其它非法用途,商用请购买正版,否则产生一切后果由用户自行承担!谢谢!

     

    当前位置:主页 > 站长学堂 > zblog教程 >
    Nginx的Z-Blog的伪静态配置方法
    时间:2019-10-11 15:14 作者:菜鸟哥 浏览:收藏 挑错 打印

    本站是在LNMP环境运行,参考Nginx的Z-Blog的静态配置


    复制代码代码如下:


    server {

    listen 80;

    server_name jb51.net blog.jb51.net www.jb51.net;

    root /www/web/www_jb51_net/public_html;

    index index.html index.php index.htm;

    error_page 400 /errpage/400.html;

    error_page 403 /errpage/403.html;

    error_page 404 /errpage/404.html;

    location ~ \.php$ {

    proxy_pass http://127.0.0.1:88;

    include naproxy.conf;

    #include ./rewrite/z-blog_nginx.conf;

    rewrite ^/post/([0-9]+).html$ /index.php?id=$1 last;

    rewrite ^/([0-9]+).html$ /index.php?id=$1 last;

    rewrite ^/(?:page_)?([0-9]*).html$ /index.php?page=$1 last;

    rewrite ^/category-([0-9]+)(?:_)?([0-9]*).html$ /index.php?cate=$1&page=$2 last;

    rewrite ^/date-([0-9-]+)(?:_)?([0-9]*).html$ /index.php?date=$1&page=$2 last;

    rewrite ^/author-([0-9]+)(?:_)?([0-9]*).html$ /index.php?auth=$1&page=$2 last;

    rewrite ^/tags-([0-9]+)(?:_)?([0-9]*).html$ /index.php?tags=$1&page=$2 last;

    }

    location / {

    try_files $uri @apache;

    }

    location @apache {

    proxy_pass http://127.0.0.1:88;

    include naproxy.conf;

    }

    }

    郑重声明:
    本站所有内容均由互联网收集整理、网友上传,并且以计算机技术研究交流为目的,仅供大家参考、学习,不存在任何商业目的与商业用途。 若您需要商业运营或用于其他商业活动,请您购买正版授权并合法使用。
    我们不承担任何技术及版权问题,且不对任何资源负法律责任。
    如无法下载,联系站长索要。
    如有侵犯您的版权,请给我们来信:cainiaovip8@qq.com,我们尽快处理。

    ZBlog发表文章区标签教程ZBlog发表文章区标签教程
    zblogphp为什么我修改了网页样式,没过几天又给我还原回来了?zblogphp为什么我修改了网页样式,没过
    zblogphp主题修改专用插件“主题编辑器”使用说明zblogphp主题修改专用插件“主题编辑器