株式会社AZU (アズ) | 長野市のWEBシステム・業務システム・WEBサイト制作会社

+ MENU

WordPressの.htaccessファイル

WordPressの .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]     index.phpにリダイレクトする。
</IfModule>
# END WordPress

[2015/05/08]
このエントリーをはてなブックマークに追加