MyBB Community Forums

Full Version: Changed from webhost site to my own domain
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hey guys, I switch from my webhost's site to my own domain and since doing that I have received some problems. 

https://gyazo.com/ced7e1b9d711508355cb0c1244fd312b

^ That is the problem i'm referring to. I'm not even sure what's causing it... If anyone has any ideas, please help me ;o
post your forum url so that someone can check it ..
(2018-03-19, 02:36 AM).m. Wrote: [ -> ]post your forum url so that someone can check it ..

Very sorry! aspirationgaming.com
looks like you are missing http:// for the url
please see fixing method here => MyBB faq: broken style
(2018-03-19, 03:03 AM).m. Wrote: [ -> ]looks like you are missing http:// for the url
please see fixing method here => MyBB faq: broken style

Thanks so much man! I appreciate the help!

(2018-03-19, 03:22 AM)Desire Wrote: [ -> ]
(2018-03-19, 03:03 AM).m. Wrote: [ -> ]looks like you are missing http:// for the url
please see fixing method here => MyBB faq: broken style

Thanks so much man! I appreciate the help!

Hmm actually, it's weird. For some reason when I do www.aspirationgaming.com it doesn't work but when I just do aspirationgaming.com it works... What am I doing wrong?
^ personally I'd suggest to NOT use www in the url.
URLs with www can be redirected to non-www URLs
(can be done through redirect facility available at web host panel - or through .htaccess rules)
(2018-03-19, 03:29 AM).m. Wrote: [ -> ]^ personally I'd suggest to NOT use www in the url.
URLs with www can be redirected to non-www URLs
(can be done through redirect facility available at web host panel - or through .htaccess rules)
Okay, but what about when other people try to go on my website? I use NFO and this is on my control panel. https://gyazo.com/ec391f1e2c0c6a76cb6bb4ae19ba2479
can you use .htaccess file ? if so, you can add redirect rule like below
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.aspirationgaming.com/ [NC]
RewriteRule ^(.*)$ http://aspirationgaming.com/$1 [L,R=301]
(2018-03-19, 03:41 AM).m. Wrote: [ -> ]can you use .htaccess file ? if so, you can add redirect rule like below
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.aspirationgaming.com/ [NC]
RewriteRule ^(.*)$ http://aspirationgaming.com/$1 [L,R=301]

I found a htaccess.txt added it and still it's not changing ;o

here is a photo https://gyazo.com/892d140f2a07d9c58739aebfe52987cd
^ you can add suggested content into a file named htaccess2.txt ,
upload it to main folder of your files server (where you have htaccess.txt)
and then rename it as .htaccess [file name has a dot at beginning & it has no extension]
Pages: 1 2