故障安全.htaccess?

时间:2010-09-06 18:48:21

标签: .htaccess

我最近不得不将一些代码放入不同的服务器,而我的.htaccess文件失败了。我可以将我不需要的所有部分分开,但事情是我想在源代码控制上使用它(一个文件适用于许多场景)。

我们可以制定自动防故障规则吗?我想我在这里寻找if else条款。

# IF THIS IS ALLOWED DO IT #
AuthType none 
Satisfy any 

# IF THIS IS ALLOWED DO IT #
DirectoryIndex index.htm index.php
AddHandler php5-script .php

1 个答案:

答案 0 :(得分:1)

我认为有一个< IfModule>在htaccess的事情:

<IfModule mod_auth_basic.c>
  AuthType basic
  Satisty any
</IfModule>

<IfModule mod_php.c>
   DirectoryIndex index.htm index.php
   AddHandler php5-script .php
</IfModule>

但我不认为AuthType有一个模块...... IfModule !mod_a.c检查mod_a.c是否存在。 但是,我不知道是否有版本检查和试用。