欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

iis 的伪静态配置 ISAPI_Rewrite

shiping1 的头像
RegistrationName=Longshui Chen
RegistrationCode=7Z3NU-7MAP5-JZDPH-PR9GK

[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32

#该文件默认集成了shopex4.8,shopex7.2,discuz,phpwind等 常用系统的伪静态规则,但这些规则有可能会有相互冲突的情况。请根据你的网站 的实际使用情况,删除不必要的规则。
#比如你只使用了shopex4.8+discuz论坛,则只保留shopex4.8和discuz的伪静态规则,把其他的规则 全部删除,以免冲突! 另外可以根据需要再添加新的规则 !
#是注释符号


#301设置,此设置情况下cctv.com/aa.htm 会301跳至www.cctv.com/aa.htm,将cctv.com替换为您自己的域名就能实现自己的域名的301
RewriteCond %{HTTP:Host} ^bbb.com$
RewriteRule (.*) http://www.bbb.com$1 [NC,R=301]
RewriteCond %{HTTP:Host} ^aaa.com$
RewriteRule (.*) http://www.aaa.com$1 [NC,R=301]



#这个是手机跳转 肯定是好的
RewriteCond %{HTTP_USER_AGENT} ^.*android.*$ [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*blackberry.*$ [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*googlebot-mobile.*$ [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*iemobile.*$ [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*ipad.*$ [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*iphone.*$ [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*opera mobile.*$ [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*palmos.*$ [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*symbian.*$ [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*webos.*$ [NC]
RewriteRule ^(.*)$ http://m.bbb.com/ [NC,R=301]




#防止外来网来人员进行报名破坏
RewriteCond %{HTTP_REFERER} !^http://bbb.com [NC]
RewriteCond %{HTTP_REFERER} !^http://www.bbb.com [NC]
RewriteCond %{HTTP_REFERER} !^http://aaa.com [NC]
RewriteCond %{HTTP_REFERER} !^http://www.aaa.com [NC]
RewriteRule php/zaixianbaoming(.*)\.php$ /nolink.txt [R,NC]
 

#这个是安全 静止php
RewriteCond % !^$  
RewriteRule uploads/(.*).(php)$ – [F]  
RewriteRule data/(.*).(php)$ – [F]  
RewriteRule templets/(.*).(php)$ – [F]
RewriteRule plus/(?!feedback_ajax|count|feedback|ad|view)[^>]*.(php)[^>]*$ – [F]
RewriteRule member/(.*).(php)$ – [F]
RewriteRule special/(.*).(php)$ – [F]
#RewriteRule include/(?!vdimgck).{7}.(php)$ – [F] 效果不理想
RewriteRule include/(?!vdimgck|dialog/select_images)[^>]*.(php)$ – [F]
RewriteRule data/(.*).(php)$ – [F]
RewriteRule a/(.*).(php)$ – [F]
RewriteRule images/(.*).(php)$ – [F]




 
普通分类: