我正在为我的网站使用框架(zend 2);它使用ht.access将所有URL请求重定向到索引页面。这通常很正常。
但是,我知道想在网站上添加一个Wordpress博客。
我不希望博客受Zend模块影响,因此需要在网站内独立。这意味着它不受ht访问规则的约束。
Accordignly,Iwant所有具有Blog目录的网址
即www.sampleSite / blog
不受任何ht访问规则约束。
以下是我的HT访问规则。你会注意到所有的URL请求都被重定向到索引页面。
RewriteEngine On
# The following rule tells Apache that if the requested filename
# exists, simply serve it.
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
# The following rewrites all other queries to index.php. The
# condition ensures that if you are using Apache aliases to do
# mass virtual hosting, the base path will be prepended to
# allow proper resolution of the index.php file; it will work
# in non-aliased environments as well, providing a safe, one-size
# fits all solution.
RewriteCond %{REQUEST_URI}::$1 ^(/.+)(.+)::\2$
RewriteRule ^(.*) - [E=BASE:%1]
RewriteRule ^(.*)$ %{ENV:BASE}index.php [NC,L]
我现在如何从这些规则中排除Blog目录
答案 0 :(得分:0)
对此的解决方案相当简单。
可以在框架内访问公用文件夹。相反,我真正需要做的就是将我的wordpress博客文件夹放在其中,我们很高兴
即
www.sampleSite/blog