首页 > 服务器 > Web服务器 > 正文

httpd.ini转.htaccess方法及案例参考

2024-09-01 13:54:32
字体:
来源:转载
供稿:网友
httpd.ini适合IIS使用,.htaccess适合Apache使用,nginx.conf适合Nginx使用

httpd.ini
  1. [ISAPI_Rewrite] 
  2. # 3600 = 1 hour 
  3. CacheClockRate 3600 
  4. RepeatLimit 32 
  5. RewriteRule ^(.*)/view-(.*)-(.*)/.htm$ $1/view/.php/?s=$2&y=$3 


.htaccess(注意上面的红斜干)
  1. RewriteEngine on 
  2. RewriteBase / 
  3. RewriteRule ^(.*)view-(.*)-(.*)/.htm$ $1/view.php?s=$2&y=$3  


注:相关教程知识阅读请移步到服务器教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表