是在qeephp论坛看到的一条规则,排除所有带 “.”的请求,其余的全部重写向index.php
[ISAPI_Rewrite]
RewriteCond Host: www.xxx.com
RewriteRule ^([^.]+)$ /index.php/$1 [L]
由于sitemap模块动态生成 sitemap.xml,所以也需要重写向index.php
RewriteCond Host: www.xxx.com
RewriteRule /sitemap.xml /index.php/sitemap [L]
原创文章,转载请注明: 转载自贝壳博客
本文链接地址: Kohana v3 IIS rewrite 规则
问下 sitemap模块动态生成 sitemap.xml 这个是什么意思啊