1

Nginx 1.0.15 を使用しています

domain.com > domain.com/wordpress にリダイレクトしたいのですが、domain.com/mycustomdirectory など、domain.com/files/ などを具体的に参照する機能が必要です。

これが私の現在の構成です。ここにはすでに書き直しがあります。

server {
    listen       80 default_server;
    server_name  domain.com;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.php index.html index.htm;
}
        location /twitter {
        rewrite ^ http://twitter.com/name permanent;
}
        location /music {
        rewrite ^ http://domain.com:8080 permanent;
}
        location /plus {
        rewrite ^ http://gplus.to/name permanent;
}

     error_page  404              /404.html;
     location = /404.html {
       root   /usr/share/nginx/html;
}
4

0 に答える 0