.htaccess文件

关于

这是什么

.htaccess是Apache配置文件

准备工作

打开httpd.conf


替换AllowOverride NoneAllowOverride All


保存后重启服务器。

开始保护

创建

网站根目录打开cmd


输入rem > .htaccess

编写

首先,用文本编辑器打开创建好的.htaccess文件
输入Order Allow,Deny


回车后输入Allow from 允许访问的IP,用英文逗号隔开多个IP
回车后输入Deny from 禁止访问的IP,用英文逗号隔开多个IP

编写建议

使用Allow from all(允许所有IP访问)后在使用Deny from xxx.xxx.xxx,xxx.xxx.xxx

Files

htaccessfile_content_add_order_allow_deny.jpg 85.9 KiB  26.01.2023 03:55 
htaccessfile_create_this_file.jpg 95.7 KiB  26.01.2023 03:44 
htaccessfile_edit_httpd_conf_file.jpg 488.4 KiB  26.01.2023 03:32 
htaccessfile_open_command_line_on_wiki_rootdir.jpg 70.3 KiB  26.01.2023 03:40 
htaccessfile_open_httpd_conf_file.jpg 486.1 KiB  26.01.2023 03:26