mampでwpを初めて動かした超初心者です。 パーマネントリンクの設定が上手くいかなかったので、備忘録として。 現象 Post name/%postname%/ が設定されているが、下層ページが全てNot Foundになる。 が、Plainの状態だとリンクは全て繋がる。 問題箇所 「.htaccess」か「mod_rewrite」というのが怪しいと知る。 .htaccess # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfM