Ubuntu 14下apache2开启对.htaccess支持

前端之家收集整理的这篇文章主要介绍了Ubuntu 14下apache2开启对.htaccess支持前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

具体操作是:

sudo a2enmod
  • 1

终端提示可以使用的模块名称,此时输入

rewrite
    提示成功加载rewrite模块,然后修改apache2的配置文件

    cd /etc/apache2
    sudo vim apache2.conf
      1
    • 2

    然后将

    <Directory /var/www/>
        Options Indexes FollowSymlinks
        AllowOverride None
        Require all granted
    </Directory>
      2
    • 3
    • 4
    • 5

    中的AllowOverride None改为AllowOverride All

    然后重启apache即可

     
    

    sudo /etc/init.d/apache2 restart 转载http://blog.csdn.net/monsterjohn/article/details/47090917

    原文链接:https://www.f2er.com/ubuntu/350273.html

猜你在找的Ubuntu相关文章