Announcement
Collapse
No announcement yet.
Multiple url error issue
Collapse
X
-
Multiple url error issue
I have multiple url's for my site and when I am logged into bikersboobfriends.com I can not connect to bikersandfriends.com or bikersbabesbikes.com it ask me to login and when I try I get a error message as shown in the picture I uploaded and when i tried to go into the admincp by typing the url it told me I need to white list the url ?Tags: None
-
You don't actually need multiple licenses if all the URL point to the same instance of the forum without any masking...*however* this won't physically work in vBulletin 5, it will only actually work from one single URL because of the complex URL rewriting involved.
You'll need to use 301 redirects to redirect all secondary URLs to the same single URL, which needs to be the URL that is set in the admincp.Last edited by Mark.B; Mon 5th Dec '16, 1:59pm.
Comment
-
It's done at server level...commonly using .htaccess but some server control panels have URL redirect options.
Comment
-
Mark not sure I understand this that Mike Gave me the urls i want to redirect are bikersandfriends.com and bikersbabesbikes.com
# Always use https for secure connections # Replace 'www.example.com' with your domain name # (as it appears on your SSL certificate) RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.yoursite.com/$1 [R=301,L] RewriteCond %{HTTP_HOST} ^yoursite.com$ RewriteRule ^(.*)$ "https\:\/\/www\.yoursite\.com\/$1" [R=301,L] # To redirect both www and non www RewriteCond %{HTTP_HOST} ^yoursite\.com$ [OR] RewriteCond %{HTTP_HOST} ^www\.yoursite\.com$ RewriteRule ^/?$ "https\:\/\/www\.yoursite\.com" [R=301,L]
Comment
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Comment