在PHP中:什么是.htaccess文件以及它将做什么?

时间:2015-04-25 08:08:45

标签: php .htaccess

任何人都可以为.htaccess文件提供简单而简洁的答案。在简单易懂的世界中描述这一点。

1 个答案:

答案 0 :(得分:1)

.htaccess是一个配置文件,用于运行Apache Web Server软件的Web服务器。当.htaccess文件放在一个目录中时,该目录又通过Apache Web Server加载,然后Apache Web Server软件检测并执行.htaccess文件。这些.htaccess文件可用于更改Apache Web Server软件的配置,以启用/禁用Apache Web Server软件提供的其他功能和特性。这些工具包括基本的重定向功能,例如,如果发现404文件未找到错误,或者用于更高级的功能,如内容密码保护或图像热链接防护。

以下是您可能包含在.htaccess文件中的示例。

AuthName "Member's Area Name"
AuthUserFile /path/to/password/file/.htpasswd
AuthType Basic
require valid-user
ErrorDocument 401 /error_pages/401.html
AddHandler server-parsed .html