红联Linux门户
Linux帮助

ubuntuserver安装Apache后,修改默认目录和分布式配置文件可执行

发布时间:2015-12-28 15:54:08来源:linux网站作者:菜鸟学编程$

装了apache后,访问出现The requested URL *** was not found on this server,查看了下/etc/httpd/conf/httpd.conf,发现原因:


1.DocumentRoot指向错误,修改之(三处:apache2.conf、sites-available/000-default.conf、sites-enabled/000-default.conf),使其指向你所想指向的目录

apache默认访问目录为:/var/www/html 。要做的就是修改该路径。

找到含/var/www/html的文件:

终端输入:grep -R /var/www/html  /etc/apache2    //在“/etc/apache2”及其子目录下的文件做筛选,找到含有“/var/www/html”的所有文件

grep:刷选命令

-R:递归

/var/www/html:要搜索的语句

/etc/apache2:要搜索的所在目录


2.确保apache开启了rewrite_module模块(Apache的rewrite_module模块,支持.htaccess)

rewrite_module没开启,开启过程如下:

windows:

打开apache2.conf配置文件,找到:

LoadModule rewrite_module modules/mod_rewrite.so

找到将前面"#"去掉,如果不存在则添加上句。

linux(ubuntu):

sudo a2enmod rewrite

如果你的网站是根目录的话:

<Directory />
Options FollowSymLinks
AllowOverride None  //不允许.htaccess分布式配置文件的覆盖
</Directory>

将上面的None改为All

如果你的网站不是根目录,设置如下:

<Directory "/media/home/iValley">
Order allow,deny
Allow from all
Allow from deny
AllowOverride All
</Directory>

注:确保“/media/home/iValley”路径至少可以访问

然后重启服务器,service apache2 restart ,这样.htaccess就可以使用了。


Ubuntu 15.04下安装Apache 2.4.16:http://www.linuxdiyf.com/linux/13156.html

Ubuntu 14.04编译安装Apache:http://www.linuxdiyf.com/linux/10693.html

Linux实验报告-源代码编译安装Apache:http://www.linuxdiyf.com/linux/10856.html

Linux下卸载Apache后再安装Apache:http://www.linuxdiyf.com/linux/10293.html

Ubuntu 15.04安装配置Apache和mysql的方法:http://www.linuxdiyf.com/linux/13074.html