zoukankan      html  css  js  c++  java
  • 为何Apache下.htaccess不起作用,Linux、Windows详解

    可能出现下面这三种的错误可能性:

    第一种:启用 rewrite 和 .htaccess 设置

    rewrite设置:找到apache的配置文件httpd.conf文件,找到:#LoadModule rewrite_module modules/mod_rewrite.so 去掉前面的#号。

    改为:LoadModule rewrite_module modules/mod_rewrite.so

    .htaccess设置

    Windows里面这样设置:AccessFileName htaccess

    Linux里面这样设置:AccessFileName .htaccess。

    Linux比Windows里面文件名前面多了一个点。如果没找到AccessFileName自己在httpd.conf文件最后面加上。

    第二种:AllowOverride 的设置。

    默认AllowOverride 为AllowOverride none。把这个改为:AllowOverride All。如果配置了多个虚拟目录需在每个目录里面开启,实例:

    <VirtualHost *:80>
    DocumentRoot "D:/SvnTrac/svn/SVNRepository/www/root/"
    ServerName 127.0.0.1:80

    DirectoryIndex index.html index.htm index.php index.shtml
    <Directory "D:/SvnTrac/svn/SVNRepository/www/root/">
    Options Indexes FollowSymLinks
    AllowOverride ALL
    Order allow,deny
    Allow from all
    </Directory>
    </VirtualHost>

    <VirtualHost 127.0.0.2:80>
    DocumentRoot "D:/SvnTrac/svn/SVNRepository/www/"
    ServerName 127.0.0.2:80

    DirectoryIndex index.html index.htm index.php index.shtml
    <Directory "D:/SvnTrac/svn/SVNRepository/www/">
    Options Indexes FollowSymLinks
    AllowOverride ALL
    Order allow,deny
    Allow from all
    </Directory>
    </VirtualHost>

    第三种:Options 的设置

    默认设置是:Options Indexes FollowSymLinks

    如果改成以下设置后,就会出错

    Options Indexes FollowSymLinks MultiViews Includes (出错)

    如果要启用,目录浏览 MultiViews

    服务器端包含 Includes (<!–#include virtual=”top.htm” –>)

    为了简单可以设置为:Options All

    前两种是配置中常见的错误,第三种一般少见,最后提醒大家一下,记得配置文件改好后一定要重启服务器啊。

  • 相关阅读:
    Row versus Set Processing, Surprise!(集合处理和单行处理数据的差异性)
    SVN导出增量包的方法
    Number of Digit One
    VPS+LNMP+WordPress搭建个人网站
    寻找最小的k个数(大顶堆方法)
    二叉搜索树转化为有序双向链表(C语言)
    LeetCode 345 Reverse Vowels of a String
    LeetCode 278 First Bad Version
    LeetCode 205 Isomorphic Strings
    LeetCode 88 Merge Sorted Array
  • 原文地址:https://www.cnblogs.com/52php/p/5660052.html
Copyright © 2011-2022 走看看