导航系统DHPro4.1.3去授权版源码
Nginx伪静态:
location / {
index index.php index.html;
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php last;
}
}
Apache伪静态:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteBase /
RewriteRule . /index.\php
轮询监控链接失效功能【测试过收录站点太多的话是不起作用的,所以这个功能不建议使用】
本文结束