[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[cobalt-developers] Redirect with .htaccess
- Subject: [cobalt-developers] Redirect with .htaccess
- From: Raq Admin <raq@xxxxxxxxxxxxx>
- Date: Fri Jul 25 15:59:01 2003
- List-id: Discussion Forum for developers on Sun Cobalt Networks products <cobalt-developers.list.cobalt.com>
I am attempting to redirect a user to a secure page but am having zero
luck.....
This is my .htaccess file
AuthUserFile /home/.sites/128/site10/other/.htpasswd
AuthGroupFile /dev/null
AuthName EnterPassword
AuthType Basic
require valid-user
<IfModule mod_ssl.c>
SSLRequireSSL
</IfModule>
<IfModule !mod_ssl.c>
# no non-ssl access
Redirect permanent / https://www.domain.com
</IfModule>
What am I doing wrong?