nginx环境:
# 首页、分类浏览、数据归档、最近更新、排行榜、意见反馈
if ($uri ~ "^/(index|webdir|weblink|article|category|update|archives|top|feedback|link|rssfeed|sitemap)(.html|/?)") {rewrite ^/(index|webdir|weblink|article|category|update|archives|top|feedback|link|rssfeed|sitemap)(.html|/?) /index.php?mod=$1 last;}# 最近更新和数据归档if ($uri ~ "^/(update|archives)(-|/)(d+)(-|/)(d+)(.html|/?)") {rewrite ^/(update|archives)(-|/)(d+)(-|/)(d+)(.html|/?) /index.php?mod=$1&date=$3&page=$5 last;}# 站内搜索if ($uri ~ "^/search(-|/)(name|url|tags|baidu|intro|br|pr|sr)(-|/)(.*)(-|/)?(d+)?(.html|/?)") {rewrite ^/search(-|/)(name|url|tags|baidu|intro|br|pr|sr)(-|/)(.*)(-|/)?(d+)?(.html|/?) /index.php?mod=search&type=$2&query=$4&page=$6 last;}# 站点详细、文章详细、链接详细、单页if ($uri ~ "^/(siteinfo|artinfo|linkinfo|diypage)(-|/)(d+)(.html|/?)") {rewrite ^/(siteinfo|artinfo|linkinfo|diypage)(-|/)(d+)(.html|/?) /index.php?mod=$1&wid=$3 last;}# RSSif ($uri ~ "^/rssfeed(-|/)(.+)(-|/)?(d+)?(.html|/?)") {rewrite ^/rssfeed(-|/)(.+)(-|/)?(d+)?(.html|/?) /index.php?mod=rssfeed&type=$2&cid=$4 last;}# SiteMapif ($uri ~ "^/sitemap(-|/)(.+)(.html|/?)") {rewrite ^/sitemap(-|/)(.+)(.html|/?) /index.php?mod=sitemap&cid=$2 last;}# 分类目录if ($uri ~ "^/(webdir|article)(-|/)(.+)(-|/)(d+)(-|/)(d+)(.html|/?)") {rewrite ^/(webdir|article)(-|/)(.+)(-|/)(d+)(-|/)(d+)(.html|/?) /index.php?mod=$1&cid=$5&page=$7 last;}# PHP 处理if (!-e $request_filename) {rewrite ^ /index.php last;}
Apache环境:
IIS环境:RewriteEngine On# 首页、分类浏览、数据归档、最近更新、排行榜、意见反馈RewriteRule ^(index|webdir|weblink|article|category|update|archives|top|feedback|link|rssfeed|sitemap)(.html|/?)$ index.php?mod=$1 [L]# 最近更新RewriteRule ^(update|archives)(-|/)(d+)(-|/)(d+)(.html|/?)$ index.php?mod=$1&date=$3&page=$5 [L]# 站内搜索RewriteRule ^search(-|/)(name|url|tags|baidu|intro|br|pr|sr)(-|/)(.*)(-|/)?(d+)?(.html|/?)$ index.php?mod=search&type=$2&query=$4&page=$6 [L]# 站点详细、文章详细、链接详细、单页RewriteRule ^(siteinfo|artinfo|linkinfo|diypage)(-|/)(d+)(.html|/?)$ index.php?mod=$1&wid=$3 [L]# RSSRewriteRule ^rssfeed(-|/)(.+)(-|/)?(d+)?(.html|/?)$ index.php?mod=rssfeed&type=$2&cid=$4 [L]# SiteMapRewriteRule ^sitemap(-|/)(.+)(.html|/?)$ index.php?mod=sitemap&cid=$2 [L]# 分类目录RewriteRule ^(webdir|article)(-|/)(.+)(-|/)(d+)(-|/)(d+)(.html|/?)$ index.php?mod=$1&cid=$5&page=$7 [L]<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<!-- 首页、分类浏览、数据归档、最近更新、排行榜、意见反馈 -->
<rule name="GeneralPages" stopProcessing="true">
<match url="^(index|webdir|weblink|article|category|update|archives|top|feedback|link|rssfeed|sitemap)(.html|/?)$" />
<action type="Rewrite" url="index.php?mod={R:1}" />
</rule>
<!-- 最近更新和数据归档 -->
<rule name="UpdateAndArchives" stopProcessing="true">
<match url="^(update|archives)(-|/)(d+)(-|/)(d+)(.html|/?)$" />
<action type="Rewrite" url="index.php?mod={R:1}&date={R:3}&page={R:5}" />
</rule>
<!-- 站内搜索 -->
<rule name="Search" stopProcessing="true">
<match url="^search(-|/)(name|url|tags|baidu|intro|br|pr|sr)(-|/)(.*)(-|/)?(d+)?(.html|/?)$" />
<action type="Rewrite" url="index.php?mod=search&type={R:2}&query={R:4}&page={R:6}" />
</rule>
<!-- 站点详细、文章详细、链接详细、单页 -->
<rule name="DetailPages" stopProcessing="true">
<match url="^(siteinfo|artinfo|linkinfo|diypage)(-|/)(d+)(.html|/?)$" />
<action type="Rewrite" url="index.php?mod={R:1}&wid={R:3}" />
</rule>
<!-- RSS -->
<rule name="RSS" stopProcessing="true">
<match url="^rssfeed(-|/)(.+)(-|/)?(d+)?(.html|/?)$" />
<action type="Rewrite" url="index.php?mod=rssfeed&type={R:2}&cid={R:4}" />
</rule>
<!-- SiteMap -->
<rule name="SiteMap" stopProcessing="true">
<match url="^sitemap(-|/)(.+)(.html|/?)$" />
<action type="Rewrite" url="index.php?mod=sitemap&cid={R:2}" />
</rule>
<!-- 分类目录 -->
<rule name="CategoryDirectory" stopProcessing="true">
<match url="^(webdir|article)(-|/)(.+)(-|/)(d+)(-|/)(d+)(.html|/?)$" />
<action type="Rewrite" url="index.php?mod={R:1}&cid={R:5}&page={R:7}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
以上伪静态需在 35分类目录: 35分类目录【优站】适配 php7.0 分享版 这个版本适配,别的旧版35分类目录不适配
修复伪静态部分问题,让其适配程序
来源:本站原创 浏览:9次 时间:2025-04-02
简介:修复伪静态部分问题,让其适配程序
© 版权声明
- 上一篇: 《95分类目录:揭秘SEO优化中最高效的权威外链解决方案》
- 下一篇: 没有了
推荐资讯
推荐站点
Bible Verse of the Day
Get your free Bible Verse of the Day
verseoftheday.onlineRetro Games
Play classic retro games online for free. Enjoy NES, SNES, Genesis/MD, Neo Geo, GBA and arcade emulator games directly in your browser. The best free retro games collection.
classicgamezone.comTikTok動画保存
ティックトック動画を無料でロゴなし保存。高画質でTikTok動画をダウンロードできるサービスです。簡単操作で動画を保存できます。
ttsavehub.comTwitter Video Downloader
Free Twitter video downloader to save high-quality Twitter/X videos easily. Best Twitter downloader tool for all X video download needs, no registration required.
twxsave.com上海ゲーム無料プレイ
誰でも楽しめる上海ゲームを無料提供中!必ず解ける牌配置とサポート機能で、初心者も安心。手軽に遊べる上海ゲームで、リラックスタイムをお過ごしください!
xn--sckyeod992lk36a.com