Heim >Backend-Entwicklung >PHP-Tutorial >hello world to php mac 配置 xmapp virtual host

hello world to php mac 配置 xmapp virtual host

WBOY
WBOYOriginal
2016-07-29 09:01:231241Durchsuche

一、安装xmapp。安装完以后查看,服务是否都能启动(数据库和服务器)

二、配置自己的virtualhost

      1、系统host文件添加服务器的域名(在浏览器中输入域名后会先通过host文件)

          sudo nano /private/etc/hosts(也可以使用vim打开进行编辑)

          hello world to php mac 配置 xmapp virtual host

      2、配置Apache,打开Apache的配置文件 /Applications/XAMPP/etc/httpd.conf

         # Virtual hosts  Include

       /Applications/XAMPP/etc/extra/httpd-vhosts.conf  #让Apache去读虚拟主机的配置文件

三、配置httpd-vhosts.conf里添加Virtual Host的配置

      

         SetOutputFilter DEFLATE

        Options FollowSymLinks

        AllowOverride All

        Require all granted

       # Order allow,deny

        allow from all

        DirectoryIndex index.html index.php

   

    ErrorLog "/Users/only/Desktop/www/logs/dummy-host.example.com-error_log"

    CustomLog "/Users/only/Desktop/www/logs/dummy-host.example.com-access_log" common

四、出现的问题

 1、 mysql无法启动(重装xmapp)

 2、网站始终跳转到xmapp的默认页。有可能系统自带Apatch 修改时为系统的文件,因此一直没有跳转

 3、出现403错误,在httpd.conf里面搜索User Deamon,把deamon改成OS的用户名,重启Apache(服务器文件夹

      一 致)

五、用到vim的命令

   打开 sudo vim fileName;

   输入 i 

   退出 按下esc 按下: 进入命令模式 wq 保存退出


独学而无友,则孤陋而寡闻!分享知识,交流技术,碰撞思想。  

     

以上就介绍了hello world to php mac 配置 xmapp virtual host,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn