Ubuntu版本为16.04
安装命令
sudo apt-get install apache2
更改默认目录
sudo subl /etc/apache2/apache2.conf
将 <Directory /var/www/>
改成 <Directory "你的目录">
,可以将/var/www 中的默认网页复制到 你的目录 中
sudo subl /etc/apache2/sites-available/000-default.conf
将 DocumentRoot /var/www/html
改成 DocumentRoot "你的目录"
重启
sudo /etc/init.d/apache2 restart
启动Rewritea功能
sudo a2enmod rewrite
启动这个指令后,即启用了mod_rewrite模块。但要使rewtite生效,还需要配置:
sudo subl /etc/apache2/apache2.conf
将 <Directory "你的目录">
往下的AllowOverride None
改为 AllowOverride All
然后重启服器即可
sudo /etc/init.d/apache2 restart