apache下的一个rewrite

WBOY
Release: 2016-06-23 14:12:26
Original
780 people have browsed it

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


回复讨论(解决方案)

你是不是需要在notice.html文件夹下再建立一个.htacess文件。
如果在notice.html文件夹下没有建立的话,程序还是会走public下的.htacess.

具体原理的东西,你可以看看传智播客PHP视频教程 zend framework 第4讲 zend原理深度剖析。

你是不是需要在notice.html文件夹下再建立一个.htacess文件。
如果在notice.html文件夹下没有建立的话,程序还是会走public下的.htacess.

具体原理的东西,你可以看看传智播客PHP视频教程 zend framework 第4讲 zend原理深度剖析。
后来发现可以直接对zend的router进行修改的,直接代码级别的。这个逻辑很清晰 比htaccess好用多了,哈哈。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template