mac 自带apache配置域名访问项目

第一步:vim /etc/hosts

127.0.0.1 www.test.com

第二步:配置apache 配置文件

vim /etc/apache2/httpd.conf

# 把注释打开

Include /private/etc/apache2/extra/httpd-vhosts.conf

然后:

sudo vim /etc/apache2/extra/httpd-vhosts.conf

编辑这个文件最后面加上:

 

     ServerName www.jg.com

     ServerAlias www.jg.com

     DocumentRoot "/Applications/MAMP/htdocs/web/blog"

   

         Options FollowSymLinks IncludesNOEXEC Indexes  

         DirectoryIndex index.html index.htm index.php  

         AllowOverride all  

         Order Deny,Allow  

         Allow from all  

         Require all granted  

     


最后重启apache

sudo apachectl restart

之后浏览器输入配置的域名查看结果

你可能感兴趣的:(linux)