アクセスがないのでSEOした

アクセスが増えないどころか無いので、SEOした。果たしてSEOしたという言い回しで正しいかは分からないけど、とにかくした。

 

nginxでphpをfpmで動かしているのだが、permalinkの設定が1日寝かさないと分からなかった。他の人はこんな感じでできたと言ってるんですけど、アクセスすると404 not foundとかno input ほげほげってなる。


location / {
try_files $uri $uri/ index.php?q=$uri&$args;
}

 

nginxのerror.logを見てたら想定のuriがindex.phpに渡っていなさそうで、こんな感じに修正したらちゃんとpermalinkできるようになった。


location /blog/vottie/ {
try_files $uri $uri/ /blog/vottie/index.php?q=$uri&$args;
}

Comments on this post

No comments.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Trackbacks and Pingbacks on this post

No trackbacks.

TrackBack URL