PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

apache停的一个rewrite

原创
2016-06-13 12:47:52 584浏览

apache下的一个rewrite
1:我的是zend环境,默认下除了一些静态资源都映射到index.php了
2:我有一个新的映射notice.html 想映射到content/index ,然后让content/index 再映射到index.php
我该怎么写呢?

RewriteEngine On 

RewriteRule notice\.htm$ content/index [NC,L]
RewriteRule !\.(gif|css|js|jpg|png|pdf|ico|html|php|swf|wmv)$ index.php [NC,L]

我发现这个规则是直接notice.html 映射到了index.php
而不是content/index 映射到了index.php

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。