• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

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