httpd.ini 适用于IIS6服务器系统,另存为httpd.ini上传到网站根目录自动生效。
[ISAPI_Rewrite]
#3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
RewriteRule ^/vod-(.*)$ /index.php/?m=vod-$1 [I]
RewriteRule ^/art-(.*)$ /index.php/?m=art-$1 [I]
RewriteRule ^/gbook-(.*)$ /index.php/?m=gbook-$1 [I]
RewriteRule ^/label-(.*)$ /index.php/?m=label-$1 [I]
RewriteRule ^/map-(.*)$ /index.php/?m=map-$1 [I]
web.config 适用于IIS7服务器系统,另存为web.config上传到网站根目录自动生效。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule vod">
<match url="^vod-(.*)$" />
<action type="Rewrite" url="index.php/?m=vod-{R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule art">
<match url="^art-(.*)$" />
<action type="Rewrite" url="index.php/?m=art-{R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule gbook">
<match url="^gbook-(.*)$" />
<action type="Rewrite" url="index.php/?m=gbook-{R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule label">
<match url="^label-(.*)$" />
<action type="Rewrite" url="index.php/?m=label-{R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule map">
<match url="^map-(.*)$" />
<action type="Rewrite" url="index.php/?m=map-{R:1}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
==========================苹果CMS系统接收参数介绍====================================
视频地图页 index.php?m=vod-map.html
视频栏目页 index.php?m=vod-type-id-*-pg-*.html
视频内容页 index.php?m=vod-detail-id-*.html
视频播放页 index.php?m=vod-play-id-*-src-*-num-*.html
视频搜索页 index.php?m=vod-search-wd-*-pg-*.html
视频专题首页 index.php?m=vod-topicindex-pg-*.html
视频专题列表 index.php?m=vod-topic-id-*-pg-*.html
文章地图页 index.php?m=art-map.html
文章栏目页 index.php?m=art-type-id-*-pg-*.html
文章内容页 index.php?m=art-detail-id-*-pg-*.html
文章搜索页 index.php?m=art-search-wd-*-pg-*.html
文章专题首页 index.php?m=art-topicindex-pg-*.html
文章专题列表 index.php?m=art-topic-id-*-pg-*.html
视频筛选页 index.php?m=vod-list-id-*-pg-*-wd-*-area-*-lang-*-year-*-letter-*-order-*-by-*.html
文章筛选页 index.php?m=art-list-id-*-pg-*-wd-*-letter-*-order-*-by-*.html
视频tag页 index.php?m=vod-search-tag-*-pg-*.html
新闻tag页 index.php?m=art-search-tag-*-pg-*.html
留言本 index.php?m=gbook-show.html
地图页 index.php?m=map-*-pg-*.html
自定义页面 index.php?m=label-*-pg-*.html