新cai泛程序
环境 php7.4-8.0伪静态规则:nginx# 1. 后台管理入口rewrite ^/admin/?$ /admin/index.php last;# 2. 文章泛解析:任何 /article/xxx.html 自动生成内容location ~ ^/article/[a-zA-Z0-9_-]+\.html$ {
rewrite
环境 php7.4-8.0
伪静态规则:
# 1. 后台管理入口rewrite ^/admin/?$ /admin/index.php last;# 2. 文章泛解析:任何 /article/xxx.html 自动生成内容location ~ ^/article/[a-zA-Z0-9_-]+\.html$ {
rewrite ^/article/([a-zA-Z0-9_-]+)\.html$ /article/index.php?slug=$1 last;
}# 3. 专题页:/topic/xxx.html 从 topics.json 查询并生成location ~ ^/topic/[a-zA-Z0-9_-]+\.html$ {
rewrite ^/topic/([a-zA-Z0-9_-]+)\.html$ /topic/index.php?slug=$1 last;
}
apache
RewriteRule ^admin/?$ admin/index.php [L]RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^article/([a-zA-Z0-9_-]+)\.html$ article/index.php?slug=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^topic/([a-zA-Z0-9_-]+)\.html$ topic/index.php?slug=$1 [L,QSA]开通会员,永久免费下载所有软件与网站程序
会员地址:http://www.xsozzc.cc/?id=4








收藏
点赞
-
上一篇
蜘蛛池提交才有用? -
下一篇
没有更多文章

欢迎 你 发表评论: