Apache开启Rewrite

2016-01-19  本文已影响81人  hwk603

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

上一篇下一篇

猜你喜欢

热点阅读