.htaccess是PHP中的什么?

WBOY
发布: 2023-08-27 17:02:02
转载
873 人浏览过

.htaccess是PHP中的什么?

.htaccess is a configuration file for use on web servers running on the web apache server software. when a .htaccess file is placed in a directory which in turn loaded via the Apache web server, then the .htaccess file detected and executed by the Apache server software. 

.htaccess files can be utilized to modify the setup of the Apache server software to empower additional functionality and fetures that the apache web server softwatre brings to the table. We can use the .htaccess file for alteration various configuration in apache web server software. Some of them are listed below:

ErrorDocuments

Creating custom error pages is very useful, it allows us to show web site visitors a friendly error message, in case of if a URL on your web site does not work.

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.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!