自适应各终端懒人网址导航源码。
V2.0版本是在原1.8版本的基础上修复和增加了些功能。推荐直接使用新版本,舍弃旧版本,后期会继续不定期更新。
测试环境:
宝塔Nginx -Tengine2.2.3的php5.5+mysql
先导入数据库文件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]
标签:
本文链接:https://qinmeitang.com/code/2157.html
版权声明:
1:勤美堂源码网站内所有模板源码均由互联网收集整理、网友上传,并且以计算机技术研究交流为目的,仅供大家参考、学习,不存在任何商业目的与商业用途;2、若您需要商业运营或用于其他商业活动,请您购买正版授权并合法使用。 我司不承担任何技术及版权问题,且不对任何资源负法律责任;3:如无法链接失效或侵犯版权,请先联系我们点击这里给我发消息23467321@qq.com,不保证时时在线,但一定会给您一个满意答复;4:本站提供的资源由互联网收集整理、网友上传,勤美堂源码网不提供任何技术支持及安装服务,下单前请确定自己是否有能力安装。
还没有评论,快来说点什么吧~