绿夏网址导航系统采用简约时尚风格,致力打造一个简约而不简单的网址导航系统!
全站使用伪静态,如您的空间或服务器不支持伪静态将无法使用本系统。
绿夏云主机(idc.lxwl520.cn)支持.htaccess伪静态,无需配置伪静态上传安装即可使用。
此版本无自动安装功能,需自行导入数据库文件及修改根目录的config.php文件
开源版请保留后台版权字样!!!
更多源码请访问绿夏资源网:www.lxwl520.cn
演示:www.dh8.wang
联系QQ:173766103 交流群:226887802
环境PHP5.6 MySQL5.6+
绿夏网址导航系统 v1.0
发布时间:2020-09-11
绿夏网址导航系统 v1.5
发布时间:2020-09-15
1、增加百度主动推送功能,在后台设置相关信息即可使用。
2、增加sitemap(网站地图)注:此功能为txt版,自动生成至根目录,提交百度请使用:https://域名/sitemap.txt
3、增加广告功能,可在后台开关此功能,可一键发布广告,无需编写代码。
4、新增文章下载功能,发布文章时配置即可。
5、修改部分UI。
后台目录:/admin 管理员账号密码:admin admin888
apache伪静态规则:
<IfModule mod_rewrite.c>RewriteEngine on
RewriteRule ^index.html$ index.php
RewriteRule ^about.html$ about.php
RewriteRule ^search.html$ search.php
RewriteRule ^apply.html$ apply.php
RewriteRule ^404.html$ 404.php
RewriteRule ^sort/([1-9]+[0-9]*).html$ sort.php?id=$1
RewriteRule ^sort/([a-zA-Z]+).html$ sort.php?alias=$1
RewriteRule ^site-([1-9]+[0-9]*).html$ site.php?id=$1
RewriteRule ^news-([1-9]+[0-9]*).html$ news.php?id=$1
RewriteRule ^([a-zA-Z]+).html$ site.php?alias=$1
</IfModule>
nginx伪静态规则:
location = /index.html {
rewrite ^(.*)$ /index.php;
}
location = /about.html {
rewrite ^(.*)$ /about.php;
}
location = /search.html {
rewrite ^(.*)$ /search.php;
}
location = /apply.html {
rewrite ^(.*)$ /apply.php;
}
location = /404.html {
rewrite ^(.*)$ /404.php;
}
location /sort {
rewrite ^/sort/([1-9]+[0-9]*).html$ /sort.php?id=$1;
rewrite ^/sort/([a-zA-Z]+).html$ /sort.php?alias=$1;
}
location /site {
rewrite ^/site-([1-9]+[0-9]*).html$ /site.php?id=$1;
}
location /news {
rewrite ^/news-([1-9]+[0-9]*).html$ /news.php?id=$1;
}
location / {
rewrite ^/([a-zA-Z]+).html$ /site.php?alias=$1;
}
-----正文到此结束-----
发表评论 取消回复