苹果cms10伪静态规则大全
很多适合,出于SEO目的,我们需要对URL伪静态,以下是苹果cms10各个平台下的伪静态规则:
1、Windows平台下iis6.x下使用httpd.ini规则
[ISAPI_Rewrite]#3600 = 1 hour
CacheClockRate 3600RepeatLimit 32
RewriteRule (.*)$ /index.php?s=$1 [I]
2、Windows平台下iis7.x下使用web.config规则
<?xml version="1.0" encoding="UTF-8"?><configuration><system.webServer><rewrite><rules><rule name="OrgPage" stopProcessing="true"><match url="^(.*)$" /><conditions logicalGrouping="MatchAll"><add input="{HTTP_HOST}" pattern="^(.*)$" /><add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /><add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /></conditions><action type="Rewrite" url="index.php/{R:1}" /></rule></rules></rewrite></system.webServer></configuration>
3、Linux平台下apache下使用.htaccess规则
<IfModule mod_rewrite.c>Options +FollowSymlinks -MultiviewsRewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]</IfModule>
4、Linux平台下nginx下使用maccms.conf规则
location / {if (!-e $request_filename) {rewrite ^/index.php(.*)$ /index.php?s=$1 last;rewrite ^/admin.php(.*)$ /admin.php?s=$1 last;rewrite ^/api.php(.*)$ /api.php?s=$1 last;rewrite ^(.*)$ /index.php?s=$1 last;break;}}
上述,苹果cms10伪静态规则源文件,下载地址:http://down.11dmh.com/weijingtaiguize.rar
如果你不清楚伪静态规则,如何应用在苹果cms10系统配置,点击这里查看苹果cms10伪静态配置教程