ASKER
ASKER
ASKER
ASKER
Networking is the process of connecting computing devices, peripherals and terminals together through a system that uses wiring, cabling or radio waves that enable their users to communicate, share information and interact over distances. Often associated are issues regarding operating systems, hardware and equipment, cloud and virtual networking, protocols, architecture, storage and management.
TRUSTED BY
What you're asking relate to both DNS + HTTP.
Here's how to accomplish what you're asking.
1) DNS: company.com will have an A record
2) DNS: newlink.company.com will have an A record, to allow HTTPS (as CNAME records are now disallowed)
3) HTTP: newlink.company.com -> 302 redirect -> blogprovider.com/newlink
There is no such thing as a DNS URL redirect, this occurs at the HTTP level.
Note: Be very careful with this. If you make the common mistake of using a 301, then a year later change...
blogprovider.com/newlink -> blogprovider.com/version2
Then all visitors who visit your site after change will redirect to blogprovider.com/version2
And all visitors returning to your site (previous visits) will see blogprovider.com/newlink forever, because all major browsers have no expiration for 301 links.
This can cause many impossible to debug problems.
In most cases 302 redirects are best, as when you change the target link all old + new visits see the target link change.