.htaccess是PHP中的什么?

WBOY
WBOY 转载
2023-08-27 17:02:02 421浏览

.htaccess是PHP中的什么?

ErrorDocument 404 /error_pages/404.html

密码保护

非常容易,我们可以对需要用户名和密码才能访问的应用程序目录进行密码保护。

AuthName "Admin Area"
AuthUserFile /path/to/password/file/.htpasswd
AuthType Basic
require valid-user

第一行告诉Apache Web服务器安全目录被称为'Admin Area',当弹出登录提示出现时,这将被显示出来。随后的一行指示密码文件的位置。第三行确定了认证类型,在这个例子中,我们使用'Basic',因为我们使用基本的HTTP认证,最后第四行表示我们需要有效的登录凭证

重定向

重定向使我们能够将网站访问者从网站中的一个文档重定向到另一个文档。

Redirect /old_dir/ http://www.test.com(your domain)/new_dir/index.html

拒绝访客根据IP地址

order allow,deny
deny from 155.0.2.0
deny from 123.45.6.1
allow from all

The above lines tell the Apache Web Server to block visitors from the IP address '155.0.2.0' and '123.45.6.1' and allow all other IP addresses.

Adding MIME types

To set up a MIME type, create a .htaccess file following the main instructions and guidance which includes the following text:

AddType text/html htm0

'AddType'确定您正在包含一个MIME类型。后续部分是MIME类型,在这种情况下是content或HTML,最后一部分是文件扩展名,在此示例中为'htm0'。

以上就是.htaccess是PHP中的什么?的详细内容,更多请关注php中文网其它相关文章!

声明:本文转载于:tutorialspoint,如有侵犯,请联系admin@php.cn删除