前提:apache 已经安装好
方法一:
第一步: 打开终端(Ctrl+Alt+T), 编辑配置文件
sudo gedit /etc/apache2/sites-enabled/000-default
将如下代码类似的填写进去:
ServerAdmin webmaster@localhost
ServerName www.eelly.dev
DocumentRoot /var/www/trunk
Options FollowSymLinks
AllowOverride All
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
AllowOverride All
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
ErrorLog ${APACHE_LOG_DIR}/error.www.eelly.dev.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.www.eelly.dev.log combined
第二步:配制本地虚拟域名
修改/etc/hosts文件,增加 127.0.0.1 www.eelly.dev ,保存
第三步:重启apache
sudo serivce apache2 restart
第四步:查看apache错误日志进行跟踪调试
tail /var/log/apache2/error.www.eelly.dev.log -f
方法二:
第一步: 在 /etc/apache2/sites-available 建www.teell.local文件
在 /etc/apache2/sites-available 建www.teell.local文件
代码如下:
ServerAdmin webmaster@localhost
ServerName www.teelly.local
DocumentRoot /var/www/trunk
Options FollowSymLinks
AllowOverride All
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
AllowOverride All
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
然后保存www.teelly.local 文件
第二步 激活www.teelly.local 通过 a2ensite 激活虚拟主机配置
sudo a2ensite www.teelly.local
打开目录 /etc/apache2/sites-enabled/, 你会发现所有激活的虚拟主机, 可以通过 a2dissite 进行注销
sudo a2dissite www.teelly.local
第三步,重启apache
service apache2 restart
第四步,配制本地虚拟域名
修改/etc/hosts文件 ,增加localhost www.teelly.local 保存OK
apache 开启重写模块命令
sudo a2enmod rewrite
此时就能正常访问你的项目了