首页 > 代码库 > apache配置中的小细节
apache配置中的小细节
- configuration error: couldn’t perform authentication错误的解决办法
configuration error: couldn’t perform authentication. AuthType not set!: /
apache 2.4中支持的 granted语法在低版本中不能使用
需要把下面的语句注释掉:
# Require all granted
保存 重启apache 即可!
- .htaccess: Invalid command ‘RewriteEngine‘
RewriteEngine命令需要rewrite mod的支持
#LoadModule rewrite_module modules/mod_rewrite.so
去掉注释,开启即可
3、附带2个常用的vhost
<VirtualHost *:80> ServerAdmin www.fuck2.com DocumentRoot "d:/mysite/fuck2.com" ServerName www.fuck2.com ServerAlias fuck2.com <Directory "d:/mysite/fuck2.com/"> Options FollowSymLinks AllowOverride All Order deny,allow Deny from allow #Require all granted </Directory> ErrorLog "logs/www.fuck2.com-error.log" CustomLog "logs/www.fuck2.com-access.log" common DirectoryIndex index.php index.html index.htm index.shtml default.html default.html </VirtualHost><VirtualHost *:80> ServerAdmin www.fuck.com DocumentRoot "d:/zhenyi_web" ServerName www.fuck.com ServerAlias fuck.com <Directory "d:/zhenyi_web/"> Options FollowSymLinks AllowOverride All Order deny,allow Deny from allow </Directory> ErrorLog "logs/www.fuck.com-error.log" CustomLog "logs/www.fuck.com-access.log" common</VirtualHost>
4、附带一个www跳转的.htaccess
<Files ~ "^.(htaccess|htpasswd)$">deny from all</Files>RewriteEngine onRewriteCond %{HTTP_HOST} ^(fuck\.com)(:80)? [NC]RewriteRule ^(.*) http://www.fuck.com/$1 [R=301,L]order deny,allow
apache配置中的小细节
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。