自適應各終端懶人網址導覽原始碼是一個以PHP+MySQL進行開發的網址導航原始碼。
此是在原3.8的基礎上修復和增加了些功能。
新人推薦直接使用,捨棄本,
會二次開發的請對照後自行升級,後期會繼續不時更新。
寶塔Nginx -Tengine2.2.3的PHP5.6 + MySQL5.6.44
為防止偵錯錯誤,建議使用測試環境運行的php與mysql
首先用phpMyAdmin匯入資料庫檔案db/db.sql
如果匯入不行,請直接複製資料庫內容執行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 ^/wz.html$ /wzall.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;
rewrite ^/wz([1-9]+[0-9]*).html$ /wz.php?id=$1;
rewrite ^/wzshow_([1-9]+[0-9]*).html$ /wzshow.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 ^wz.html wzall.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]
RewriteRule ^wz([0-9]+).html wz.php?id=$1 [L,NC]
RewriteRule ^wzshow_([0-9]+).html wzshow.php?id=$1 [L,NC]
IIS偽靜態規則(請查看壓縮包中的簡單說明)