Permalinkの設定とは、wordpressのページにアクセスするときのURLを以下のように変更する方法
http://wp.yurucafe.com/?p=123
↓
http://wp.yurucafe.com/2007/05/08/sample-post/
- 管理ページ>オプション> Permalinkから設定
- .htaccessファイルを作成し、wordpressのドキュメントルートに設置
- .htaccessファイルに以下を記述
CODE:
-
<IfModule mod_rewrite.c>
-
RewriteEngine On
-
RewriteBase /
-
RewriteCond %{REQUEST_FILENAME} !-f
-
RewriteCond %{REQUEST_FILENAME} !-d
-
RewriteRule . /index.php [L]
-
</IfModule>
