MyBB Community Forums

Full Version: Google SEO HTTPS
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've installed Google SEO on ####### though this forum uses HTTPS and It seems as though as the plugin doesn't like SSL... 

Using HTTP as it is now works fine though once I change the boards URL to "https://gamingwindow.com/" either nothing loads or I have page 404 errors. 

Help?
It expects the HTTPS variable to be set, which probably isn't the case if you let cloudflare handle that part, instead of using your own webserver. As a workaround, set it with .htaccess
So basically... Rather than changing any URL settings in mybb just add a redirection rule in the .htaccess file?

I don't think I've understood your post...

I've added a redirection rule in .htaccess and it's made no difference.
(2015-03-25, 04:56 PM)damowhite666 Wrote: [ -> ]So basically... Rather than changing any URL settings in mybb just add a redirection rule in the .htaccess file?

I don't think I've understood your post...

I've added a redirection rule in .htaccess and it's made no difference.

Wondering if you had any success with this? I'm also using CF's HTTPS page rule.
I don't believe I managed to get this working properly..

Though if you have purchased your own SSL certificate, you just need to add a redirection line in your .htaccess file.

Something like this

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
(2015-09-04, 02:42 PM)damowhite666 Wrote: [ -> ]I don't believe I managed to get this working properly..

Though if you have purchased your own SSL certificate, you just need to add a redirection line in your .htaccess file.

Something like this

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

Have you tried this? I might try this later though if you can test it then let me know the result that would be great.

Edit redirect.php in the Googleseo plugin folder

Code:
putenv($_SERVER[HTTPS]=on);
I no longer use Mybb I'm afraid, I no longer own "gamingwindow.com" either.

I'd be more than happy to test if I could, sorry.