10-12-2022, 07:08 AM
+1 for fixing the broken link!
As for why? Websites are either dns to a www or non-www assignment. To get both http://www or http:/ to find a site, the webmaster needs to include an .htaccess file in the server root directory. The file is a simple text file that routes the person visiting the site to the proper dns configuration. If one were written correctly and installed on the site in this thread, both links would find it.
Example for Apache server:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.http://l7d.ddns.net\.com [NC]
RewriteRule (.*) http://l7d.ddns.net/$1 [R=301,L]
Other examples: https://techstream.org/Web-Development/H...h-HTACCESS
Pete
As for why? Websites are either dns to a www or non-www assignment. To get both http://www or http:/ to find a site, the webmaster needs to include an .htaccess file in the server root directory. The file is a simple text file that routes the person visiting the site to the proper dns configuration. If one were written correctly and installed on the site in this thread, both links would find it.
Example for Apache server:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.http://l7d.ddns.net\.com [NC]
RewriteRule (.*) http://l7d.ddns.net/$1 [R=301,L]
Other examples: https://techstream.org/Web-Development/H...h-HTACCESS
Pete