美文网首页
宝塔 Nginx 食用 php 版 jsproxy

宝塔 Nginx 食用 php 版 jsproxy

作者: Pixcat | 来源:发表于2020-05-09 20:36 被阅读0次

    源码

    备份  |  出处

    伪静态

    if (!-f $request_filename){

    set $rule_0 1$rule_0;

    }

    if (!-d $request_filename){

    set $rule_0 2$rule_0;

    }

    if ($rule_0 = "21"){

    rewrite ^/?http/(.*?)/?$ /index.php?url=$1 last;

    }

    修改配置

    设置404页面

    server{

    error_page 404 /404.html;

        location = /404.html {

            root /www/wwwroot/站点目录;

        }


    Apache

    设置默认404页

    更改 404.html404.stml 

    .htaccess 伪静态

    RewriteEngine On

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^/?http/(.*?)/?$ /index.php?url=$1 [L]

    ## 跳转到 https

    RewriteEngine On

    RewriteCond %{SERVER_PORT} 80

    RewriteRule ^(.*)$ https://域名/$1 [R,L]

    ## 设置默认首页优先级

    DirectoryIndex index.html index.php

    相关文章

      网友评论

          本文标题:宝塔 Nginx 食用 php 版 jsproxy

          本文链接:https://www.haomeiwen.com/subject/zielnhtx.html