
自适應各終端懶人網址導航源碼v2.6,
此版本是在原2.4版本的基礎上修複和增加了些功能。
推薦直接使用新版本,舍棄舊版本,後期會繼續不定期更新。
測試環境 :
寶塔Nginx -Tengine2.2.3的PHP5.6 + MySQL5.6.44
先導入數據庫文件db/db.sql
再修改config.php數據庫配置
然後服務器設置好僞靜态規則
訪問網站OK
後台是:你的域名/admin/login.php 賬号:admin 密碼:qqqqqq
Nginx僞靜态規則
rewrite ^/index.html$ /index.php;
rewrite ^/about.html$ /about.php;
rewrite ^/search.html$ /search.php;
rewrite ^/ranking.html$ /ranking.php;
rewrite ^/apply.html$ /apply.php;
rewrite ^/404.html$ /404.php;
rewrite ^/sort([1-9]+[0-9]*).html$ /sort.php?id=$1;
rewrite ^/sort([a-zA-Z]+).html$ /sort.php?alias=$1;
rewrite ^/site_([1-9]+[0-9]*).html$ /site.php?id=$1;
Apache僞靜态規則
RewriteEngine On
rewritebase /
RewriteRule ^index.html /index.php [L,NC]
RewriteRule ^about.html about.php [L,NC]
RewriteRule ^search.html search.php [L,NC]
RewriteRule ^ranking.html ranking.php [L,NC]
RewriteRule ^apply.html apply.php [L,NC]
RewriteRule ^404.html 404.php [L,NC]
RewriteRule ^sort([0-9]+).html sort.php?id=$1 [L,NC]
RewriteRule ^sort([a-zA-Z]+).html sort.php?alias=$1 [L,NC]
RewriteRule ^site_([0-9]+).html site.php?id=$1 [L,NC]
IIS僞靜态規則(請查看壓縮包中的版本簡單說明)