美文网首页
Apache开启Rewrite

Apache开启Rewrite

作者: hwk603 | 来源:发表于2016-01-19 13:38 被阅读81次

    ubuntu如何开启Rewrite模块
    在终端输入:

    sudo a2enmod rewrite  
    //开启Rewrite模块(停用模块,使用 a2dismod)
    sudo gedit /etc/apache2/sites-available/default 
    //修改下面的地方
    <Directory />
    Options FollowSymLinks
    AllowOverride None(修改为AllowOverride All)
    </Directory>
    <Directory "/var/orioner">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None(修改为AllowOverride All)
    Order allow,deny
    allow from all
    </Directory>
    

    最后一步,重启apache:

    sudo /etc/init.d/apache2 restart

    在网站下面建立.htaccess文件
    修改.htaccess文件属性:
    chmod -R 777 .htaccess

    相关文章

      网友评论

          本文标题:Apache开启Rewrite

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