去评论
dz插件网

百度快速收录代码 伪静态 免费交流

哥斯拉
2024/05/01 22:36:20
起初朋友发了这么一个图片过来,说可以快速收录,但是只有一半边代码,我通过各种方式和渠到最终优化了两个代码大家可以试试





觉得代码写的不是很好欢迎完善和一起交流,快收代码有用的话也能造福一下大家

快速收录代码(1)



    location ~* (data) {
        return 403; #
    }
    location = /index.html {
        rewrite ^/index.html$ /index.php last;
    }

    location = sitemap_article_1.xml {
        rewrite ^/sitemap_article_1.xml$ /www/wwwroot/dv20.net/sitemap_article_1.xml last;
    }

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

    location /baidu {
        rewrite ^/baidu_ver$ /path/to/baidu/ver.php last;
        rewrite ^/baidu_sdw$ /www/wwwroot/dv20.net/index.php last;
    }
    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param SCRIPT_NAME $fastcgi_script_name;
    }


    location ~ /\. {
        deny all;
        access_log off;
        log_not_found off;
    }



快速收录代码(2)

    server_name dv20.net www.dv20.net;
    root /path/to/your/webroot;
    index index.php index.html index.htm;
    location ~* \.(jpg|jpeg|png|gif|ico|css|js)$ {
        expires 30d;
        access_log off;
    }
    location / {
        try_files $uri $uri/ @rewrite;
    }
    location @rewrite {
        rewrite ^/post/(\d+)$ /post.php?id=$1 last;
        rewrite ^(.*)$ /index.php?page=$1 last;
    }
    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param SCRIPT_NAME $fastcgi_script_name;
    }
    location ~ /\. {
        deny all;
        access_log off;
        log_not_found off;
    }
}


网址换成自己的,网站地图也换成自己的