源码介绍:
这个导航网源代码以前是本站自用的,感觉还不错。源代码可以完全解开
使用教程
安装环境:
Apache/Nginx
PHP 5.6
Mysql
Apache伪静态:
rewritebase /
RewriteRule ^index.\html /index\.php [L,NC]
RewriteRule ^about\.html about\.php [L,NC]
RewriteRule ^search\.html search\.php [L,NC]
RewriteRule ^apply\.html apply\.php [L,NC]
RewriteRule ^404\.html 404\.php [L,NC]
RewriteRule ^sort([1-9] [0-9]*)\.html sort\.php?id=$1 [L,NC]
RewriteRule ^sort([a-zA-Z] )\.html sort\.php?alias=$1 [L,NC]
RewriteRule ^site_([1-9] [0-9]*)\.html site\.php?id=$1 [L,NC]
Nginx伪静态:
rewrite ^/index.html$ /index.php;
rewrite ^/about.html$ /about.php;
rewrite ^/search.html$ /search.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;
安装教程:
1.添加站点
2.上传安装包并解压
3.导入目录中的dh.sql文件到数据库
4.修改目录中的config.php文件
然后就可以访问站点了。
后台:你的域名/admin
默认账号:admin
默认密码:123456
源码截图
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容