Is there a quick way to remove the redirect from http://www.* to
http://* without listing all the domains? I’m about to point a couple of
hundred domains to a box running nginx, and need to remove all the www’s
from the urls for the app to work.
Phillip B Oldham
The Activity People
[email protected] mailto:[email protected]
Policies
This e-mail and its attachments are intended for the above named
recipient(s) only and may be confidential. If they have come to you in
error, please reply to this e-mail and highlight the error. No action
should be taken regarding content, nor must you copy or show them to
anyone.
This e-mail has been created in the knowledge that Internet e-mail is
not a 100% secure communications medium, and we have taken steps to
ensure that this e-mail and attachments are free from any virus. We must
advise that in keeping with good computing practice the recipient should
ensure they are completely virus free, and that you understand and
observe the lack of security when e-mailing us.
On Tue, Jun 10, 2008 at 09:59:55AM +0100, Phillip B Oldham wrote:
Is there a quick way to remove the redirect from http://www.* to
http://* without listing all the domains? I’m about to point a couple of
hundred domains to a box running nginx, and need to remove all the www’s
from the urls for the app to work.
server {
server_name www.*;
if ($http_host ~* ^www\.(.+)$) {
set $h $1;
}
rewrite ^ http://$h$request_uri;
}
Wonderful, thanks!
Igor S. wrote:
server_name www.*;
if ($http_host ~* ^www\.(.+)$) {
set $h $1;
}
rewrite ^ http://$h$request_uri;
}
–
Phillip B Oldham
The Activity People
[email protected] mailto:[email protected]
Policies
This e-mail and its attachments are intended for the above named
recipient(s) only and may be confidential. If they have come to you in
error, please reply to this e-mail and highlight the error. No action
should be taken regarding content, nor must you copy or show them to
anyone.
This e-mail has been created in the knowledge that Internet e-mail is
not a 100% secure communications medium, and we have taken steps to
ensure that this e-mail and attachments are free from any virus. We must
advise that in keeping with good computing practice the recipient should
ensure they are completely virus free, and that you understand and
observe the lack of security when e-mailing us.
Thanks Igor,
I’ll keep this email under my arm for the time being. In the near
future I will certainly have to use it also, and moreover it helps me
understand nginx rewrite module.
On Tue, Jun 10, 2008 at 05:48:58PM +0700, Denis F. Latypoff wrote:
by the way, Igor, this rule will rewrite
http://www.domain.com/path?arg=value
to
http://domain.com/path?arg=value?arg=value
as well as the ‘rewrite ^(.*) http://$h$1;’
just found it.
Then
Hello Igor,
Tuesday, June 10, 2008, 6:05:17 PM, you wrote:
On Tue, Jun 10, 2008 at 05:48:58PM +0700, Denis F. Latypoff wrote:
by the way, Igor, this rule will rewrite
http://www.domain.com/path?arg=value
to
http://domain.com/path?arg=value?arg=value
as well as the ‘rewrite ^(.*) http://$h$1;’
just found it.
Then
ok, that did the trick, thanks 
Hello Igor,
Tuesday, June 10, 2008, 5:02:38 PM, you wrote:
On Tue, Jun 10, 2008 at 09:59:55AM +0100, Phillip B Oldham wrote:
Is there a quick way to remove the redirect from http://www.* to
http://* without listing all the domains? I’m about to point a couple of
hundred domains to a box running nginx, and need to remove all the www’s
from the urls for the app to work.
server {
server_name www.*;
if ($http_host ~* ^www\.(.+)$) {
set $h $1;
}
rewrite ^ http://$h$request_uri;
}
by the way, Igor, this rule will rewrite
http://www.domain.com/path?arg=value
to
http://domain.com/path?arg=value?arg=value
as well as the ‘rewrite ^(.*) http://$h$1;’
just found it.