子目录“覆盖"父htaccess中的.htaccess [英] .htaccess in subdirectory 'overriding' parent htaccess

查看:133
本文介绍了子目录“覆盖"父htaccess中的.htaccess的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

由于我缺乏对mod_rewrite的理解以及该项目的时间限制,所以搜索了2天,却无法获得正确的解决方案,希望有人能提供帮助.

been searching for 2 days and can't quite get the right solution due to my lack of understanding of mod_rewrite and time constraints on this project so hoping someone can help.

目标

如果客户端没有正确的cookie,则将所有请求重写到根index.php. 如果客户端具有正确的cookie,则允许他们根据需要进行浏览.

To rewrite all requests to the root index.php if the client doesn't have the correct cookie. If the client has the correct cookie allow them to browse as they wish.

问题

我的子目录中的htaccess优先于我的根htaccess,因此诸如www.mydomain.com/subdir/index.php之类的请求都不会被重定向.

The htaccess in my subdirectory is taking precendence over my root htaccess, so requests such as www.mydomain.com/subdir/index.php arn't getting redirected.

我的根.htaccess

Options FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_COOKIE} !^.*pass.*$ 
RewriteCond %{REQUEST_URI} !^/index.php$
RewriteRule ^(.*)$ http://www.mydomain.com/index.php?url=$0 [NC]

我的子目录htaccess

RewriteEngine On
RewriteBase /
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]

其他信息

理想情况下,我正在尝试创建一个密码保护区,因此所有请求都被路由到index.php,可以在其中输入密码,并在验证后创建cookie,从而允许免费浏览内容和子目录.因此,如果有更好的方法可以做到这一点,请告诉我,由于我需要自定义登录,错误和启动页面,所以我没有使用.htpasswd.

Ideally I'm trying to create a password protected area, so all requests are routed to index.php where a password can be entered and when verified a cookie is created, allowing free browsing of contents and sub directories. So if there is a better way to accomplish this then please let me know, and I havn't gone for .htpasswd since I need custom login, error and splash pages.

此外,子目录.htaccess是一个ExpressionEngine URL处理程序.

Also, the subdir .htaccess is an ExpressionEngine URL handler.

谢谢.

推荐答案

要允许从父.htaccess(父文件夹中的htaccess)执行重写规则,您需要明确允许它(Apache将在当前.htaccess中处理重写规则.作为唯一需要执行的操作,只要重写的URL保留在同一子文件夹中即可.

To allow execution of rewrite rules from parent .htaccess (htaccess from parent folder), you need to explicitly allow it (Apache will treat rewrite rules in current .htaccess as the only one that need to be executed, as long as rewritten URL remains in the same subfolder).

您需要将此行添加到子文件夹中的.htaccess中:

You need to add this line to your .htaccess in sub-folder:

RewriteOptions inherit

Apache手册: http://httpd.apache.org/docs /current/mod/mod_rewrite.html#rewriteoptions

Apache manual: http://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewriteoptions

这篇关于子目录“覆盖"父htaccess中的.htaccess的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆