The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
force https with www
I set my vbulletin to https://www.domain.com via cloudflare.
In the forum url settings I also set the same. Sadly my old members bookmarked the forum as http://domain.com it forwards them to https://domain.com instead of https://www.domains.com and multiple mods are not working.... how can i make forward everyone to https and www.? maybe via .htaccess |
#2
|
||||
|
||||
Add the following: (Do not duplicate the RewriteEngine On - If it's there once that's good enough)
RewriteEngine On # This will enable the Rewrite capabilities RewriteCond %{SERVER_PORT} 80 # This checks to make sure the connection is not already HTTPS – port 80 indicates a non-secured HTTP conection. RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L] # This rule will redirect users from their original location to the same location but using HTTPS. # Example: Visitors trying to access http://www.domain.com/somesubsection/ will be redirected to https://www.domain.com/somesubsection/ |
#3
|
||||
|
||||
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|