redirecting to https
Igor Sysoev
is at rambler-co.ru
Sun Mar 23 11:37:45 MSK 2008
On Sat, Mar 22, 2008 at 08:49:12PM -0400, Ian M. Evans wrote:
> Okay, maybe I have a cold coming on...but I've got a couple of URLs I
> need to redirect to https and the examples I've seen don't appear to be
> working:
>
> location /asecuredir {
> rewrite ^(.*) https://www.example.com$1 redirect;
> }
>
> I've tried /asecuredir and /asecuredir/
>
> It appears to redirect to https if I enter
> http://www.example.com/asecuredir but doesn't redirect if I use
> http://www.example.com/asecuredir/somepage.shtml
Probably, /asecuredir/somepage.shtml is handled by some regex location.
Try to disable regex search:
location ^~ /asecuredir {
--
Igor Sysoev
http://sysoev.ru/en/
More information about the nginx
mailing list