zoukankan      html  css  js  c++  java
  • apache配置中的小细节

    1. configuration error: couldn’t perform authentication错误的解决办法

    configuration error: couldn’t perform authentication. AuthType not set!: /

    apache 2.4中支持的 granted语法在低版本中不能使用

    需要把下面的语句注释掉:

    # Require all granted

    保存 重启apache 即可!

    1. .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:/fk_web"
        ServerName www.fuck.com
        ServerAlias fuck.com
    
        <Directory "d:/fk_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 on
    RewriteCond %{HTTP_HOST} ^(fuck.com)(:80)? [NC]
    RewriteRule ^(.*) http://www.fuck.com/$1 [R=301,L]
    order deny,allow

    wamp居然是注释了 httpd-vhosts.conf ,难怪总是都指向默认路径了。

    #Include conf/extra/httpd-vhosts.conf
  • 相关阅读:
    组装树状结构文本框
    在jsp页面动态添加,删除文本框模块
    sql字段拆分 ,连表子查询获取值
    jsp页面技术总结
    C语言的基本数据类型
    如何学习一些需要算法的程序
    如何学习一门新的编程语言
    C++ 预处理器
    C++ 函数模板&类模板
    C++ 文件和流
  • 原文地址:https://www.cnblogs.com/lovelp/p/3964842.html
Copyright © 2011-2022 走看看