• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

Question how can I redirect my blogger website to my main website?

leolee

New Pleskian
Hi, I have a website on blogger and want to redirect it to my main website which is on WordPress. Is there any expert who will help me with it?
 
I think that would be a question to ask in a blogger forum. However, as far as I know, the service does not offer web server redirects. But you can place a JavaScript redirect into the <head> ... </head> section of your page, such as
Code:
<script>
window.location="<new website url goes here>";
</script>
or you can place a http-equiv tag into the <head> ... </head> section like
Code:
<meta http-equiv='refresh' content='0;url=<new website url goes here>'/>
 
Back
Top