PDA

View Full Version : Help Apache Rewrite URL Direct to SSL



Lavrai
05-05-2008, 08:24 PM
I'm really struggling with figuring out how to re-direct my Wordpress login page to the shared ssl. Can someone please help?

This the basic code:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blogs/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blogs/index.php [L]
</IfModule>

How do I modify it to redirect to my the shared ssl address Bluehost provides for users?

greenman
05-06-2008, 02:16 PM
http://codex.wordpress.org/Administration_Over_SSL

I googled "Wordpress login shared ssl"
The link is fairly complete in it's explanation.

While it says it's not compatible with 2.5, that has since changed.
You'll need to read further instructions to enable it when you download the admin-ssl plugin from the link in the above page.

Hope this helps.