跳转到帖子

vBulletin 6.0 Nginx 伪静态 (LNMP一键包)


Jack

推荐的帖子

vBulletin 6.0 Nginx 伪静态 (LNMP一键包)

更换为LNMP一键包,发现宝塔面板可用的伪静态,在LNMP一键包变成直接下载PHP文件

因此换为以下的伪静态

 

vi /usr/local/nginx/conf/rewrite/vbb.conf

 

rewrite ^/css.php$ /core/css.php last;
rewrite ^/install/ /core/install/ last;
rewrite ^/(admincp/)$ /index.php?routestring=$1 break;

if (!-f $request_filename) {
                        rewrite ^/(.*)$ /index.php?routestring=$1 break;
                }

try_files $uri $uri/ /index.php?routestring=$uri$is_args$args;

        location / {
                if (!-f $request_filename) {
                        rewrite ^/(.*)$ /index.php?routestring=$1 last;
                }
               if (!-e $request_filename){
               rewrite ^(.*)$ /index.php?routestring=$1 break;
                }
        }


保存并离开
:wq

 

重启nginx
/etc/init.d/nginx restart

 

 

LNMP-ng-rewrite.txt

意见的链接
分享到其他网站

创建帐户或登录后发表意见

你需要成为会员才能发表意见

创建帐户

在我们的论坛注册新帐户,只需要几个简单步骤!

注册帐户

登录

已有帐户?请登录。

立刻登录
×
×
  • 创建新的...