马上注册,免费下载更多dz插件网资源。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
起初朋友发了这么一个图片过来,说可以快速收录,但是只有一半边代码,我通过各种方式和渠到最终优化了两个代码大家可以试试
觉得代码写的不是很好欢迎完善和一起交流,快收代码有用的话也能造福一下大家
快速收录代码(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;
}
}
网址换成自己的,网站地图也换成自己的
©DZ插件网所发布的一切资源仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。 网站部分内容来源于网络,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。如果您喜欢该程序,请支持正版软件,得到更好的正版服务。 您在本站任何的赞助购买、下载、查阅、回复等行为等均表示接受并同意签订《DZ插件网免责声明协议》。 如有侵权请邮件与我们联系处理: discuzaddons@vip.qq.com 并出示相关证明以便删除。敬请谅解!
|
|