On 4/9/07, Peter Lauri <[EMAIL PROTECTED]> wrote:
You might be able to do this by putting an .htaccess file in your webroot of non-ssl: ------ RewriteEngine On RewriteRule ^/(.*)$ https://www.yourdomain.com/$1 [L] ------
This appears to work:
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [L,R]
(sorry if off-topic)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

