红联Linux门户
Linux帮助

Ubuntu下启动Apache对.htaccess的支持

发布时间:2015-12-18 10:28:03来源:linux网站作者:木木……Nick

Ubuntu下启动Apache对.htaccess 的支持步骤:


1.终端运行

sudo a2enmod

程序提示可供激活的模块名称,输入:

rewrite


2.修改/etc/apache2/sites-enabled/000-default (该链接指向的是站点配置文件)

把(默认的www目录、或者需要应用.htaccess的目录)下的AllowOverride 属性改为All,保存。如:

<Directory /var/www/html/mywork/shakepalcomm/>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all
</Directory>


3.重新加载apache

sudo /etc/init.d/apache2 restart

收工。


Linux下,apache .htaccess无效,跳转不了:http://www.linuxdiyf.com/linux/16365.html

htaccess将HTTP访问重定向至HTTPS:http://www.linuxdiyf.com/linux/15928.html

25个有用Apache‘.htaccess’技巧:http://www.linuxdiyf.com/linux/12786.html