On Thu, Feb 12, 2004 at 12:50:26PM +0000, bobb wrote:
> Hey folks, just wanna double check something...
>> I'm trying to force a redirect to https for specific directories
> on the webserver, I have the following in the vhost:
>> RewriteCond %{REQUEST_URI} ~bobb/r
> RewriteCond %{SERVER_PORT} !^443$
> RewriteRule ^/(.*)?$ https://%{SERVER_NAME}/$1 [L,R]
>> Which does indeed appear to redirecto http://server/~bobb/r/foo.html> to https://server/~bobb/r/foo.html>> Just wondering if this is the best way to go about things...
It will work fine :) You can reduce the number of regular expression
expansions by doing:
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^/~bobb/r(.*)?$ https://%{SERVER_NAME}/~bobb/r$1 [L,R]
But it 's probably no-odds.
--
Colm MacCárthaigh Public Key: colm+pgp at stdlib.net
Maintained by the ILUG website team. The aim of Linux.ie is to
support and help commercial and private users of Linux in Ireland. You can
display ILUG news in your own webpages, read backend
information to find out how. Networking services kindly provided by HEAnet, server kindly donated by
Dell. Linux is a trademark of Linus Torvalds,
used with permission. No penguins were harmed in the production or maintenance
of this highly praised website. Looking for the
Indian Linux Users' Group? Try here. If you've read all this and aren't a lawyer: you should be!