
.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:
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
非常容易,我们可以对需要用户名和密码才能访问的应用程序目录进行密码保护。
立即学习“PHP免费学习笔记(深入)”;
AuthName "Admin Area" AuthUserFile /path/to/password/file/.htpasswd AuthType Basic require valid-user
第一行告诉Apache Web服务器安全目录被称为'Admin Area',当弹出登录提示出现时,这将被显示出来。随后的一行指示密码文件的位置。第三行确定了认证类型,在这个例子中,我们使用'Basic',因为我们使用基本的HTTP认证,最后第四行表示我们需要有效的登录凭证
DM建站系统律师事务所HTML5网站模板, DM企业建站系统。是由php+mysql开发的一套专门用于中小企业网站建设的开源cms。DM系统的理念就是组装,把模板和区块组装起来,产生不同的网站效果。可以用来快速建设一个响应式的企业网站( PC,手机,微信都可以访问)。后台操作简单,维护方便。DM企业建站系统安装步骤:第一步,先用phpmyadmin导入sql文件。 第二步:把文件放到你的本地服务器
0
重定向使我们能够将网站访问者从网站中的一个文档重定向到另一个文档。
Redirect /old_dir/ http://www.test.com(your domain)/new_dir/index.html
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.
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中文网其它相关文章!
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号