Ubuntu 12.10で実行されているnginx 1.2.1を使用しています
https://stackoverflow.com/a/7958540/80353のソリューションに従いました
したがって、私の仮想ホストは次のようになります。
server {
listen 80;
server_name www.example.com;
return 301 http://example.com$request_uri;
}
server {
listen 80;
client_max_body_size 5M;
server_name example.com;
root /var/virtual/example.com/webroot;
include common.conf;
include php.conf;
}
私が何を間違えたのかわからない。
現在、 を実行するたびにwww.example.com/posts/123
302 を取得しますexample.com
私は期待していましたexample.com/posts/123
アップデート:
server {
listen 80;
server_name www.example.com;
rewrite ^(.*) http://example.com$1 permanent;
}
server {
listen 80;
client_max_body_size 5M;
server_name example.com;
root /var/virtual/example.com/webroot;
include common.conf;
include php.conf;
}
common.conf は次のとおりです。
index index.html;
location ~ /\.ht {
deny all;
}
Cakephp.conf は次のとおりです。
include php.conf;
location / {
try_files $uri $uri/ /index.php?$uri&$args;
expires max;
access_log off;
}
php.conf は次のとおりです。
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
}
index index.php;