他のテーマだと問題なく動作している環境で、matureに変えると動作しなくなります。
なぜでしょうか。
他のスレッドではテーマの問題はないとのことですが
nginxで他のテーマではパーマリンクを変更しても問題なく動作しているのですが、matureテーマに変更すると動作しなくなります。
server {
listen 80;
server_name dev.domain.com;
root /var/www/wordpress/;
index index.php;
client_max_body_size 20M;
try_files $uri $uri/ /index.php?q=$uri&$args;
location ~* /wp-config.php {
deny all;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}