Wordpressでサブディレクトリの.htacessの設定
code:.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /dir_name/
RewriteRule ^index\.php$ - L
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /dir_name/index.php L
</IfModule>
https://gist.github.com/v97ug/f9dab604a05d844a59e8ac2772345ab9