Wedge
Public area => The Pub => Off-topic => Topic started by: pivotraze on September 17th, 2012, 06:06 AM
-
So this is a more advanced question... I think.
I'm trying to use WordPress with SSL. It works mostly fine. Apart from this:
I'm forcing sitewide SSL by using .htaccess. Once WordPress edits the .htaccess to change the permalink structure, it fails.
Here's the htaccess:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(.*\.)*seafiresoftware.org$ [NC]
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)$ https://www.seafiresoftware.org/$1 [R]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngineOn
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress I get a 302 Found error:Found
The document has moved here.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
Clicking Here fails, as it redirects to http and not https.
There is an attached picture for the plugins
What can I do to fix this?
Thanks in advance
-Cody
-
(I'm afraid I'm not well versed into WordPress these days, and even less into SSL...)