Nginx服务器下使用rewrite重写url以实现伪静态的示例


当前第2页 返回上一页

下面是一个完整的vhost的配置文件

server {
listen 80;
server_name ccvita.com www.ccvita.com;
location / {
    index index.html index.htm index.php;
    root /www/wwwroot/ccvita.com;
    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;
    }

}
location ~ \.php$ {
    include fastcgi_params;
    fastcgi_index index.php;
    fastcgi_pass 127.0.0.1:8787;
    fastcgi_param SCRIPT_FILENAME /www/wwwroot/ccvita.com$fastcgi_script_name;
    }
location /ccvita-status {
    stub_status on;
    access_log off;
    }
}

Discuz!的Rewrite
下面的Rewrite中百分号前面多了个转移字符“\”,这在Apache中是需要的,而在Nginx中则是不需要的。

rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /viewthread.php?tid=$1&extra=page\%3D$3&page=$2 last;

正确的应该是

rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /viewthread.php?tid=$1&extra=page%3D$3&page=$2 last;

这个错误在基本上目前所有使用Nginx作为服务器,并且开启了Rewrite的网站上存在。包括Discuz!官方,目前已经给cnteacher反馈了。
Nginx实例代码

server {
  listen    80;
  server_name www.ccvita.com ccvita.com;

  location / {
     index      index.html index.htm index.php;
     root      /www/www.ccvita.com;
     rewrite ^(.*)/archiver/((fid|tid)-[\w\-]+\.html)$ $1/archiver/index.php?$2 last;
     rewrite ^(.*)/forum-([0-9]+)-([0-9]+)\.html$ $1/forumdisplay.php?fid=$2&page=$3 last;
     rewrite ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/viewthread.php?tid=$2&extra=page%3D$4&page=$3 last;
     rewrite ^(.*)/profile-(username|uid)-(.+)\.html$ $1/viewpro.php?$2=$3 last;
     rewrite ^(.*)/space-(username|uid)-(.+)\.html$ $1/space.php?$2=$3 last;
     rewrite ^(.*)/tag-(.+)\.html$ $1/tag.php?name=$2 last;

  }

    location ~ \.php$ {
        include fastcgi_params;
        fastcgi_index index.php;
        fastcgi_pass 127.0.0.1:8694;
        fastcgi_param SCRIPT_FILENAME /www/www.ccvita.com$fastcgi_script_name;
    }

  location /www.ccvita.com-status {
     stub_status on;
     access_log off;
  }
}

更多相关Discuz论坛的内容来自木庄网络博客


标签:Discuz论坛

返回前面的内容

相关阅读 >>

帝国cms7.5整合论坛程序discuzx3.2同时登陆退出的实现方法

discuz 公告效果(自动换行,无间隙滚动)

日常收集整理php正则表达式(超常用)

详解织梦模板dedecms对Discuz论坛的一些常用调用代码

用cookies实现闪电登录论坛方法

nginx 伪静态rewrite正则资源汇总

轻松修复discuz!数据库

php网页缓存技术优点及代码实例

phpwind整合最土系统用户同步登录实现方法

discuz!x3.2版设置论坛qq在线客服号码无法发起聊天的问题解决办法

更多相关阅读请进入《Discuz论坛》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...