精品代码,自适应各终端的网址导航源码

作者 : admin 本文共1506个字,预计阅读时间需要 6分钟 发布时间: 2025-01-12 共8人阅读


源码介绍:

自适应各终端懒人源码v3.2。东西特别不错,页面设计也很大气,就是原版有点错误,无法在php5.6以上版本运行.部署的时候请注意php版本。

测试环境
宝塔Nginx -Tengine2.2.3的PHP5.6 + MySQL5.6.44
先导入数据库文件db/db.sql
再修改config.php数据库配置
然后设置好伪静态规则
访问网站OK
后台是:你的域名/admin/login.php 账号:admin 密码:qqqqqq
如有不懂不会问题的话请加:248078808 交流获取帮助

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伪静态规则
<rewrite>
<rules>
<rule name=”Imported Rule 1″>
<match url=”^index.html$” ignoreCase=”false” />
<action type=”Rewrite” url=”index.php” />
</rule>
<rule name=”Imported Rule 2″>
<match url=”^about.html$” ignoreCase=”false” />
<action type=”Rewrite” url=”about.php” />
</rule>
<rule name=”Imported Rule 3″>
<match url=”^ranking.html$” ignoreCase=”false” />
<action type=”Rewrite” url=”ranking.php” />
</rule>
<rule name=”Imported Rule 4″>
<match url=”^wz.html$” ignoreCase=”false” />
<action type=”Rewrite” url=”wzall.php” />
</rule>
<rule name=”Imported Rule 5″>
<match url=”^apply.html$” ignoreCase=”false” />
<action type=”Rewrite” url=”apply.php” />
</rule>
<rule name=”Imported Rule 6″>
<match url=”404.html$” ignoreCase=”false” />
<action type=”Rewrite” url=”404.php” />
</rule>
<rule name=”Imported Rule 7″>
<match url=”^search.html$” ignoreCase=”false” />
<action type=”Rewrite” url=”search.php” />
</rule>
<rule name=”Imported Rule 8″>
<match url=”^sort(.*).html$” ignoreCase=”false” />
<action type=”Rewrite” url=”sort.php?id={R:1}” appendQueryString=”false” />
</rule>
<rule name=”Imported Rule 9″>
<match url=”^sort(.*).html$” ignoreCase=”false” />
<action type=”Rewrite” url=”sort.php?alias={R:1}” appendQueryString=”false” />
</rule>
<rule name=”Imported Rule 10″>
<match url=”^site_(.*).html$” ignoreCase=”false” />
<action type=”Rewrite” url=”site.php?id={R:1}” appendQueryString=”false” />
</rule>
<rule name=”Imported Rule 11″>
<match url=”^wz(.*).html$” ignoreCase=”false” />
<action type=”Rewrite” url=”wz.php?id={R:1}” appendQueryString=”false” />
</rule>
<rule name=”Imported Rule 12″>
<match url=”^wzshow_(.*).html$” ignoreCase=”false” />
<action type=”Rewrite” url=”wzshow.php?id={R:1}” appendQueryString=”false” />
</rule>
</rules>
</rewrite>

展示图片:

本站所发布的资源均来源于互联网,仅限用于研究学习,不得将软件用于商业或者非法用途,否则一切后果请用户自负!如果侵犯了您的权益请与我们联系!您必须在下载后的24个小时之内,从您的手机和电脑中彻底删除。 如果您喜欢该程序,请支持正版软件,购买注册,得到更好的正版服务。如有侵权请与我们联系处理!
懒人源码 » 精品代码,自适应各终端的网址导航源码

常见问题FAQ

免费下载或者VIP会员专享资源能否直接商用?
本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
提示下载完但解压或打开不了?
最常见的情况是下载不完整:可对比下载完压缩包的与网盘上的容量,若小于网盘提示的容量则是这个原因。这是浏览器下载的bug,建议用百度网盘软件或迅雷下载。 若排除这种情况,可在对应资源底部留言,或联络我们。 通用解压密码:www.5lanren.com

发表评论