I cant reach my website without typing www - web

my website link is https://www.tweetanalyze.com/ i added tweetanalyze.com subdomain to be forwarded www.tweetanalyze.com on godaddy but it isnt working without www like https://tweetanalyze.com or http://tweetanalyze.com . My hosting provider says there is no problem in reaching it but i take this ERR_CONNECTION_TIMED_OUT all the time i try to go these links. What should i do to be able to reach my website without www? Thanks.

Related

How to get non www to redirect to www?

I currently have a domain https://beamanalytics.io but it always goes to https://beamanalytics.io and now https://www.beamanalytics.io. I heard having www as a subdomain does better for SEO. Can someone help me make it such that users that go to https://beamanalytics.io gets redirected to the www one?
I'm out of my wits here. I'm currently using NextJS and Vercel and they took care of all the initial domain setup.
You must add both primary and www domains into your project in Vercel. Then, you can set up redirects via project Settings > Domains.
There're more details in this Doc. Hope this helps.

url masking and forwarding

I have a website running on openshift (xx.rhcloud.com) and I bought a domain name from one of the BIG providers (mydomain.com).
When somebody goes to www.mydomain.com/page1.php I would like the url in the browser to stay as is and the correct page to be loaded.
Here is what happens:
If I setup the domain name host with a 301 redirect
www.mydomain.com/page1.php show as xx.rhcloud.com/page1.php.
If I ask for masking (iframe) www.mydomain.com/page1.php becomes www.mydomain.com (the reset of the url never shows)
If I setup .htaccess file on the openshift side I'm stuck with "too many redirects" error.
I cannot use Cpannel because the server is not hosted by the BIG provided I bought the domain name from.
Please help me figure out what I'm missing and how to fix the problem.
Thanks,
Joanna

How do I direct my openshift website to a gandi.net domain name I bought? I tried, but it's not working?

Okay so I created a web app and am hosting it on openshift. Right now, they just gave me a CNAME something like myapp-someappname.rhcloud.com. So they told me to use that CNAME to redirect to my domain.
Now on GANDI I bought a .com domain. Another thing is, I didn't realize there's much of a difference between www.website.com and just website.com, so the one I bought was just website.com. Now I have no idea how to redirect both of them to the www one.
For the CNAME I entered in gandi in expert mode www 10800 myapp-someappname.rhcloud.com. (with the dot at the end).
I woke up this morning, it's still not working. Also, when I go to www.website.com (Btw, website.com isn't my website, I'm just saying as an example) it just says app not found on server. When I go to just website.com, it actually takes me to gandi and says that the owner parked there or something.
So, what's the difference, and why does it say that?
How do I just SIMPLY get my website to work? I hosted it on openshift, have the CNAME, and at gandi I bought a .com domain with NO www in the front, so I don't know much about that. How do I just simply get this to work? I am so frustrated.
Here's a similar question regarding Heroku instead of Openshift, but you might easily be lost in the detailed configuration.
To simplify things, I'd recommend using Cloudflare, a Content Delivery Network, which is what I use.
Follow these steps to set it up: How to Use a CDN with Your OpenShift Application

weird website appear with the domain jwico.com if without www

I have this domain. on some internet providers if you try
www.jwico.com
it shows the current website.
and if you tried:
http://jwico.com
it shows the old website.
How can I fix this?
Go your hosting panel and create a subdomain name it as "www" and redirect it to your websites home directory like "home, public_html"

Need Domain Name assistance - Please

I have a small issue. I have tried for the last hour to find a solution for this on this and many other websites. I have found similar but none have provided an answer that works. Heres that problem:
I have a badge on my website that was given to me by Norton online protection. they provided me with a script file and I placed it where it should go. NOW, this script is registered to "www.example.com" but if someone goes to their browsertypes in just "example.com" without the WWW. the Norton badge never shows.
I spoke with Godaddy this morning and they have no solution so that's why I'm asking on here.
Is there a to send a domiain name to the same domain name? so that it always shows the WWW?
Configure your webserver such that www.example.com is one site (your actual site with your content), and you have another site that is example.com (no www subdomain) as a site that you can now configure to redirect to your actual site. How that step is done depends on which webserver you are using, but basically these is a way to do that on any webserver (Apache, IIS, etc).
You could try to read the URL and check if 'www' is present in the URL. If it is not present redirect the visitors to www.example.com
In php you could use the below for redirection
header('Location: http://www.example.com/');

Resources