1.5版本已发布:https://www.lxwl520.cn/post-2106.html
此程序版本为免费开源分享版本,不收取任何费用 谨防上当受骗!!!
绿夏网址导航系统采用简约时尚风格,致力打造一个简约而不简单的网址导航系统!
本系统全站使用伪静态,如您的空间或服务器不支持伪静态将无法使用本系统。
绿夏云主机(idc.lxwl520.cn)支持.htaccess伪静态,无需配置伪静态上传安装即可使用。
此版本无自动安装功能,需自行导入数据库文件及修改根目录的config.php文件
开源版请保留后台版权字样!!!
联系QQ:173766103 交流群:226887802
演示:www.dh8.wang
绿夏网址导航系统(开源版) v1.0
发布时间:2020-09-11
后台目录:/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;
}
-----正文到此结束-----
发表评论 取消回复