Virtual Sample
(function () {
var path = window.location.pathname.toLowerCase();
if (path === "/home.html") {
window.location.replace("https://azcap.co/");
}
if (path === "/about.htm") {
window.location.replace("https://www.azcap.co/about-us");
}
if (path === "/blog.htm") {
window.location.replace("https://www.azcap.co/blog");
}
if (path === "/service.htm") {
window.location.replace("https://www.azcap.co/corporate-branding-solutions");
}
})();