|-转 配置Apache - centos7用yum搭建LAMP环境之一
禁止目录访问是Options FollowSymLinks //禁止 Apache 显示该目录结构。Apache配置之url重写<Directory /> 根目录权限AllowOverride None //禁止用户对...
禁止目录访问是Options FollowSymLinks //禁止 Apache 显示该目录结构。
Apache配置之url重写
<Directory /> 根目录权限AllowOverride None //禁止用户对目录配置文件.htaccess修改,一般为none,
//当此指令设置为 All 时,所有具有 ".htaccess" 作用域的指令都允许出现在 .htaccess 文件中。
Require all granted
</Directory>
Order Allow,Deny
用来控制目录和文件的访问授权。
apache2.4以后修改为Require all granted 了
################################################
2.2上的配置
Order deny,allow
Deny from all
2.4上的配置
Require all denied
################################################
2.2上的配置
Order allow,deny
Allow from all
2.4上的配置
Require all granted
<Directory "站点绝对路径">
Options FollowSymLinks //禁止 Apache 显示该目录结构。
AllowOverride All
</Directory>
Options 的详解:http://blog.sina.com.cn/s/blog_a03d702f0101133h.ht...
在.htaccess文件中
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
可用于以下用途:
1、http错误的自定义页。格式 ErrorDocument 错误代码 /目录名/名.扩展名
ErrorDocument 404 /errors/notfound.html
ErrorDocument 401 "你权限访问该页面!"
2、拒绝某IP的访问
order allow,deny
deny from 210.10.56.32
deny from 219.5.45.
deny from www.baidu.com
allow from all
3、保护.htaccess文档...
浏览更多内容请先登录。
立即注册
分享的网址网站均收集自搜索引擎以及互联网,非查问网运营,查问网并没有提供其服务,请勿利用其做侵权以及违规行为。
更新于:2018-01-28 04:49:06
相关内容
Centos7利用yum安装apache+mysql8+php7 一篇搞定!
Centos 服务器搭建(Centos8服务器搭建遇到的各种问题及解决方法)
Centos8 更新yum或安装软件时提示 Failed to download metadata for repo...
从CentOS 8到CentOS Stream,到底发生什么事了?
CentOS8出现“ Error: Failed to download metadata for repo ‘AppStrea...
如何将CentOS 8转换为CentOS Stream(202205实测有效)
Centos中查看nginx、apache、php、mysql配置文件路径
Centos7 安装Apache过程详解
推荐内容