書くことないけどはじめるのが大事。

初期設定でとりあえずトラックバックの自動送信の停止とパーマリンクの設定をやってみた。

これからカスタマイズを進めていかねば。

と思ったら、パーマリンクがうまく動いてないー。

nginxだからですね。

設定ファイルのserverディレクティブに下を追加。

`
location /wordpress {
index index.php index.html index.htm;
# static files
include /etc/nginx/conf.d/common/expires.conf;
# request to index.php
if (!-e $request_filename) {

rewrite ^(.+)$ /index.php?q=$1 last;

1
2
3
4
     rewrite ^.+?($/-.*) $1 last;<br />
     rewrite ^.+?(/.*\.php)$ $1 last;<br />
     rewrite ^ /wordpress/index.php last;<br />
}<br />

}
`