• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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