修改配置文件
网上这个倒是多的是,就是配置文件改哪个的问题?
我来说说我改了什么吧,也许改的有多余,但是working了
首先是/etc/apache2/apache2.conf
用vim /etc/apache2/apache2.conf打开,然后找到下面的段落
<Directory />
Options FollowSymLinks
AllowOverride All
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/blog>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
通常一个域名下面是一个项目,所以,哪个文件路径就从/var/www改成了具体的,index.php之前的那部分路径,但是还要注意的是,有两个AllowOverride后面的改成了All?
:wq保存退出
然后是/etc/apache2/sites-enabled/000-default.conf
vim /etc/apache2/sites-enabled/000-default.conf
找到serverName 和 documentRoot
ServerName www.huyu.info
ServerAdmin webmaster@localhost
DocumentRoot /var/www/blog
:wq保存退出
评论列表
已有0条评论