How to add Custom Redirection in your Blogger Site
There are two ways to add redirection in your Blogger:
- Using the HTML code: You can add the following code to your Blogger template to redirect all visitors to a new URL:
<meta http-equiv="refresh" content="0; url=https://www.newurl.com">
This code will redirect all visitors to the new URL immediately. You can change the value of the content
attribute to specify a delay before the redirect occurs. For example, to redirect visitors after 5 seconds, you would use the following code:
<meta http-equiv="refresh" content="5; url=https://www.newurl.com">
- Using the Blogger settings: You can also use the Blogger settings to redirect visitors to a new URL. To do this, follow these steps:
- Sign in to your Blogger account.
- Click the Settings tab.
- Click the Advanced tab.
- Scroll down to the Redirects section.
- Enter the old URL in the From field.
- Enter the new URL in the To field.
- Click the Save button.
Once you have saved the changes, all visitors who attempt to access the old URL will be redirected to the new URL.
Join the conversation