源码论坛新源代

标题: 自适应各终端懒人网址导航源码v1.6 [打印本页]

作者: 小黄牛    时间: 2020-11-14 16:53
标题: 自适应各终端懒人网址导航源码v1.6
源码介绍:

环境: php5.5左右吧+mysql

先导入数据库文件db/db.sql

再修改config.php数据库配置

然后服务器设置好伪静态规则

访问网站OK


  1. Nginx伪静态规则
  2. rewrite ^/index.html$ /index.php;

  3. rewrite ^/about.html$ /about.php;
  4. rewrite ^/search.html$ /search.php;
  5. rewrite ^/apply.html$ /apply.php;
  6. rewrite ^/404.html$ /404.php;
  7. rewrite ^/sort([1-9]+[0-9]*).html$ /sort.php?id=$1;

  8. rewrite ^/sort([a-zA-Z]+).html$ /sort.php?alias=$1;
  9. rewrite ^/site-([1-9]+[0-9]*).html$ /site.php?id=$1;

  10. Apache的伪静态规则
  11. RewriteEngine On
  12. rewritebase /
  13. RewriteRule ^index.\html /index\.php [L,NC]
  14. RewriteRule ^about\.html about\.php [L,NC]
  15. RewriteRule ^search\.html search\.php [L,NC]
  16. RewriteRule ^apply\.html apply\.php [L,NC]
  17. RewriteRule ^404\.html 404\.php [L,NC]
  18. RewriteRule ^sort([0-9]+)\.html sort\.php?id=$1 [L,NC]
  19. RewriteRule ^sort([a-zA-Z]+)\.html sort\.php?alias=$1 [L,NC]
  20. RewriteRule ^site-([0-9]+)\.html site\.php?id=$1 [L,NC]
复制代码


(, 下载次数: 20)

(, 下载次数: 9)
作者: zy13672595071    时间: 2024-1-31 11:38
谢谢老板的源码!!!!





欢迎光临 源码论坛新源代 (http://www.xydai.cn/) Powered by Discuz! X3.4