Skip to content

Instantly share code, notes, and snippets.

@ituki
Created June 22, 2015 15:27
Show Gist options
  • Save ituki/06b57792bac29cd596a7 to your computer and use it in GitHub Desktop.
Save ituki/06b57792bac29cd596a7 to your computer and use it in GitHub Desktop.
【MAMP】WordPressのマルチサイトが404 ref: http://qiita.com/ituki_b/items/18337059ee5498faeaff
/* /Applications/MAMP/conf/apache/extra/httpd-vhosts.conf */
<VirtualHost *:80>
ServerName test #どんなドメインでアクセスするか
DocumentRoot "/test/" #どこにファイルをおくか
</VirtualHost>
/* /Applications/MAMP/conf/apache/extra/httpd-vhosts.conf */
<VirtualHost *:80>
ServerName test #どんなドメインでアクセスするか
DocumentRoot "/test/" #どこにファイルをおくか
</VirtualHost>
<Directory "/test/">
Options FollowSymLinks Includes
AllowOverride All
Order deny,allow
Allow from all
</Directory>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment