Yosemite 開啟 apache server

其實印象中 Mavericks 也是這樣設。只是每次都要重新翻一次資料,還是筆記下來比較方便

  1. 編輯 /etc/apache2/httpd.conf,把下面這兩行取消註解

    LoadModule userdir_module libexec/apache2/mod_userdir.so
    Include /private/etc/apache2/extra/httpd-userdir.conf
    
  2. 在 /etc/apache2/httpd.conf 加上這行

    Include /private/etc/apache2/users/*.conf
    
  3. 編輯 /etc/apache2/users/allenkuan.conf(檔名及內容路徑請照您的 username 自行修改),內容如下

    <Directory "/Users/allenkuan/Sites/">
        Options Indexes MultiViews
        AllowOverride None
        Require all granted
    </Directory>
    
  4. 重新啟動 apache

    sudo apachectl graceful