关于开启mod_rewrite的问题

其实常见问题里已经说明了如下:
9 是否支持rewrite?
可以肯定地回答,支持.有些同学在apache的安装目录下找不到mod_rewrite.so文件,总在问,为什么没有这个文件或是不是不支持之类等等?
原因很简单的,不同的编译方式就有不同的结果.如果是不是动态方式编译或添加的,是找不到这个文件的.也就是说,在静态编译是没有这个文件的,而是直接编译进apache里了.
可以通过phpinfo信息里查看 apache2handler 的 Loaded Modules  部分,能看到有 mod_rewrite 模块,即表示已支持.

但是有部分系统还是不能正常使用,原因可能是这样,打开httpd.conf,找到
<Directory "/www/wdlinux/httpd-2.2.16/htdocs">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride None

    #
    # Controls who can get stuff from this server.
    #
    Order allow,deny
    Allow from all

</Directory>

将 <Directory "/www/wdlinux/httpd-2.2.16/htdocs">
该为<Directory "/www/web/wdlinux">
将 AllowOverride None
该为 AllowOverride all
 

欢迎转载,但请保留此信息
[我的Linux,让Linux更易用] CentOS精简版,集成lamp,lnmp版,wdcp,wdcdn,wddns,一键安装包,集群负载均衡LVS,智能DNS/CDN,性能优化
本文连接:http://wdlinux.cn/old/node/337

可以开多一个目录控制,加上 AllowOverride

可以开多一个目录控制,加上
AllowOverride all
就可以

此问题已在新版wdcp修正,直接开好站点就可以

此问题已在新版wdcp修正,直接开好站点就可以