美文网首页
Apache创建rewrite规则

Apache创建rewrite规则

作者: aoshi | 来源:发表于2017-04-27 16:56 被阅读0次

    启用mod_rewrite模块
    在conf目录的httpd.conf文件中找到
    LoadModule rewrite_module modules/mod_rewrite.so

    在apache/conf/extra/http-vhost.conf 文件中

    正常模式
    <Directory "c:/web/php/">
    Options Indexes FollowSymLinks
    AllowOverride None #禁止重写
    Order allow,deny
    Allow from all
    </Directory>

    rewrite模式

    <Directory "c:/web/php/">
    Options Indexes FollowSymLinks
    AllowOverride All #允许重写
    Order allow,deny
    Allow from all
    </Directory>

    相关文章

      网友评论

          本文标题:Apache创建rewrite规则

          本文链接:https://www.haomeiwen.com/subject/fqknzttx.html