-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix VRMS redirect link without subdomain #70
Comments
AnalysisThe current hosted zone in Route 53 for
|
This comment was marked as outdated.
This comment was marked as outdated.
@trillium I believe this issue may already be fixed, and the desired behavior has been met (Navigating to http://vrms.io/ or https://vrms.io/ will redirect to: https://www.vrms.io/). Please confirm and we can close this issue. |
|
When a user types "https://vrms.io/" or "http://vrms.io/" the browser connects to the website. @ExperimentsInHonesty Please close this issue as completed. |
Overview
When a user types "https://vrms.io" or "http://vrms.io/" the browser doesn't connect to the website (i.e., if user is missing "www").
Action Items
See potential recommended steps below from ChatGPT
The potential problem you're describing is related to DNS (Domain Name System) configuration. `[www.example.com](http://www.example.com/)` and `[example.com](http://example.com/)` are technically different domains from a DNS perspective. When `https://www.example.com/` works but `https://example.com/` doesn't, it usually means that the DNS records for `[example.com](http://example.com/)` (often referred to as the "root domain" or "naked domain") are not correctly set up.
Here are a few things you could check:
Check your DNS records: Ensure that you have an A record or CNAME record set up for
[example.com](http://example.com/)
. If you're using an A record, it should point to the IP address of your server. If you're using a CNAME record, it should point to the correct domain (but note that CNAME records are not allowed on root domains according to the DNS specification, although some DNS providers allow this as an extension).Check your web server configuration: Your web server (e.g., Nginx, Apache) needs to be configured to respond to requests for both
[www.example.com](http://www.example.com/)
and[example.com](http://example.com/)
. This might involve setting up server blocks (in Nginx) or virtual hosts (in Apache) for both domains.Screenshots
"https://vrms.io""http://vrms.io"
Desired Behavior
Navigating to http://vrms.io or https://vrms.io will redirect to: https://www.vrms.io
Resources/Instructions
In order to do this we will need access to the AWS DNS.
The text was updated successfully, but these errors were encountered: