LoginSignup
0
0

More than 5 years have passed since last update.

【MAMP】WordPressのマルチサイトが404

Posted at

httpd-vhosts.confの記述に問題がありました。

修正前のhttpd-vhosts.conf

/* /Applications/MAMP/conf/apache/extra/httpd-vhosts.conf */

<VirtualHost *:80>
    ServerName test #どんなドメインでアクセスするか
    DocumentRoot "/test/" #どこにファイルをおくか
</VirtualHost>

修正後のhttpd-vhosts.conf

/* /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>

参考:MAMP を使ってローカル WordPress(マルチサイト) 環境を構築 | Web Design Leaves

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0