How to Fix WordPress Redirecting to Old Domain After Migration

Patient Tools

Read, save, and share this guide

Use these quick tools to make this medical article easier to read, print, save, or share with a family member.

Article Summary

If you've recently migrated your WordPress website to a new domain and find yourself stuck with a frustrating issue where it keeps redirecting to the old domain, don't worry – you're not alone! This common problem can be a real headache, but fear not, we're here to help you resolve it. In this guide, we'll provide simple, step-by-step instructions to fix the WordPress redirect issue...

Educational health guideWritten for patient understanding and clinical awareness.
Reviewed content workflowUse writer and reviewer profiles for stronger trust.
Emergency safety firstUrgent warning signs are highlighted below.

Seek urgent medical care if you notice

These warning signs are general safety guidance. Local emergency numbers and clinical judgment should always come first.

  • Severe symptoms, breathing difficulty, fainting, confusion, or rapidly worsening illness.
  • New weakness, severe pain, high fever, or symptoms after a serious injury.
  • Any symptom that feels urgent, unusual, or unsafe for the patient.
1

Emergency now

Use emergency care for severe, sudden, rapidly worsening, or life-threatening symptoms.

2

See a doctor

Book a professional medical evaluation if symptoms persist, worsen, recur often, affect daily activities, or occur in a high-risk patient.

3

Learn safely

Use this article to understand possible causes, tests, treatment options, prevention, and questions to ask your clinician.

If you’ve recently migrated your WordPress website to a new domain and find yourself stuck with a frustrating issue where it keeps redirecting to the old domain, don’t worry – you’re not alone! This common problem can be a real pain in the head or upper neck. সহজ বাংলা: মাথাব্যথা।" data-rx-term="headache" data-rx-definition="Headache means pain in the head or upper neck. সহজ বাংলা: মাথাব্যথা।">headache, but fear not, we’re here to help you resolve it. In this guide, we’ll provide simple, step-by-step instructions to fix the WordPress redirect issue and ensure your website operates smoothly on its new domain.

Understand the WordPress Redirect Problem

Before we dive into the solutions, let’s understand why WordPress might be redirecting to your old domain. Knowing the root cause will help us tackle the issue effectively.

1.1 What Causes the Redirect Problem?

When you migrate a WordPress website, your database and settings still contain references to the old domain. WordPress uses these references to generate links and URLs, causing the redirect problem. To resolve it, we need to update these references to the new domain.

1.2 Why Is This a Concern?

The old domain redirects can negatively impact your website’s user experience and search engine ranking. Visitors might become confused, and search engines may consider it a duplicate content issue. Resolving this issue promptly is crucial for your website’s success.

Backup Your Website

Before making any changes, it’s vital to create a backup of your website. This ensures that if anything goes wrong during the fix, you can always revert to the previous state.

2.1 How to Backup Your Website

  1. Install a reliable backup plugin like UpdraftPlus or BackupBuddy.
  2. Follow the plugin’s instructions to create a complete backup of your website.
  3. Store the backup files in a secure location, preferably off-site.

Update WordPress Settings

Now that you have a backup, let’s start by updating your WordPress settings to reflect the new domain.

3.1 Change WordPress Address and Site Address

  1. Log in to your WordPress dashboard.
  2. Go to Settings > General.
  3. In the “WordPress Address (URL)” and “Site Address (URL)” fields, replace the old domain with the new one.
  4. Click “Save Changes.”

3.2 Update Permalinks

  1. Still in the WordPress dashboard, go to Settings > Permalinks.
  2. Ensure your desired permalink structure is selected.
  3. Click “Save Changes.”

These steps will update your WordPress settings to use the new domain, but there may be other references to the old domain in your content and database.

Search and Replace in Database

To fix the WordPress redirect issue completely, you’ll need to search for and replace instances of the old domain within your website’s database.

4.1 Use a Plugin for Search and Replace

  1. Install and activate a search and replace plugin like “Better Search Replace” or “Velvet Blues Update URLs.”
  2. Go to the plugin’s settings page.
  3. In the “Search for” field, enter your old domain (e.g., oldwebsite.com).
  4. In the “Replace with” field, enter your new domain (e.g., newwebsite.com).
  5. Select the tables you want to search and replace in, usually all of them.
  6. Check the box to create a backup of the database before making changes (for safety).
  7. Click “Run Search/Replace.”

The plugin will scan your database and replace all instances of the old domain with the new one. This can take a few minutes, depending on the size of your website.

4.2 Clear Cache

After the search and replace process is complete, clear your website’s cache to ensure that the changes take effect immediately. Many caching plugins have a “Clear Cache” button in their settings.

Check Your Theme and Plugins

Sometimes, the redirect issue can be caused by theme or plugin settings that still reference the old domain.

5.1 Theme Settings

  1. Go to your WordPress dashboard.
  2. Navigate to Appearance > Themes.
  3. Activate the theme you’re using.
  4. Look for any theme-specific settings that mention the old domain and update them to the new domain.

5.2 Plugin Settings

  1. Go to your WordPress dashboard.
  2. Navigate to Plugins.
  3. For each active plugin, check their settings for any references to the old domain.
  4. Update any relevant settings with the new domain.

 Check .htaccess File

The .htaccess file in your WordPress root directory can also affect website redirects. Ensure it’s configured correctly.

6.1 Access .htaccess File

  1. Use an FTP client or your hosting control panel’s file manager to access your website’s root directory.
  2. Look for the .htaccess file.

6.2 Edit .htaccess File

  1. Download a copy of the .htaccess file as a backup.
  2. Open the .htaccess file using a text editor.
  3. Check for any lines that mention the old domain and replace them with the new domain.
  4. Save the file and upload it back to your website’s root directory, overwriting the existing file if necessary.

Test Your Website

Now that you’ve made all the necessary changes, it’s time to test your website to ensure the redirect issue is resolved.

7.1 Clear Browser Cache

Before testing, clear your browser’s cache to ensure you’re not seeing cached redirects.

7.2 Test the Homepage

  1. Open a new browser window.
  2. Enter your new domain (e.g., newwebsite.com) and press Enter.
  3. Verify that your website loads correctly without any redirects to the old domain.

7.3 Test Internal Links

Click on various internal links within your website to ensure they also navigate to the new domain without any issues.

7.4 Test External Links

If your website has external links, click on them to make sure they open in new tabs or windows and don’t redirect to the old domain.

7.5 Check for Mixed Content

In your browser’s address bar, check for a padlock icon or the word “Secure” to ensure your SSL certificate is working correctly. If you see any mixed content warnings (HTTP elements on an HTTPS page), address them promptly.

Redirects and SEO

To maintain your website’s SEO, you should set up proper redirects from the old domain to the new one.

8.1 Redirect Old Domain

  1. Access your hosting control panel or use an FTP client to edit the .htaccess file.
  2. Add the following code at the top, replacing “oldwebsite.com” with your actual old domain and “newwebsite.com” with your new domain:

apache

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^oldwebsite\.com$ [NC]
RewriteRule ^(.*)$ http://newwebsite.com/$1 [R=301,L]
</IfModule>
  1. Save the file.

8.2 Submit Sitemaps to Search Engines

Resubmit your sitemap to search engines like Google and Bing to notify them of the domain change. Use Google Search Console and Bing Webmaster Tools for this purpose.

8.3 Update External Links

If you have control over external links to your website (e.g., social media profiles or directory listings), update them to point to your new domain.

Monitor Your Website

After fixing the WordPress redirect issue, it’s essential to monitor your website for any potential problems.

9.1 Regularly Check for Redirects

Periodically check your website to ensure it’s not reverting to the old domain.

9.2 Monitor SEO Performance

Keep an eye on your website’s SEO performance, including rankings, traffic, and indexation. Any significant drop in SEO metrics could indicate issues related to the domain migration.

9.3 Stay Updated

Regularly update your WordPress core, themes, and plugins to ensure they remain compatible with your new domain.

Conclusion:

Migrating your WordPress website to a new domain is a significant step in your online journey, and it’s essential to ensure a smooth transition. The redirect issue can be a common roadblock, but with the steps outlined in this guide, you can fix it and enjoy a seamlessly functioning website on your new domain.

Remember, patience and thoroughness are key to successfully resolving the WordPress redirect problem. Always back up your website before making changes, and don’t hesitate to seek professional assistance if needed. By following these steps, you’ll be on your way to a fully operational and SEO-optimized website on your new domain. Good luck!

Patient safety assistant

Check your symptom safely

Hi, I am RX Symptom Navigator. I can help you understand what to read next and what warning signs need care.
Warning: Do not use this in emergencies, pregnancy, severe illness, or as a substitute for a doctor. For children or teens, use with a parent/guardian and clinician.
A rural-friendly guide: warning signs, when to see a doctor, related articles, tests to discuss, and OTC safety education.
1 Symptom 2 Severity 3 Safe guidance
First safety question

Is there chest pain, breathing trouble, fainting, confusion, severe bleeding, stroke-like weakness, severe injury, or pregnancy danger sign?

Choose quickly

Browse by body area
Start here: Write or select a symptom. The guide will show warning signs, doctor guidance, diagnostic tests to discuss, OTC safety education, and related RX articles.

Important: This tool is educational only. It cannot diagnose, treat, or replace a doctor. OTC information is not a prescription. In an emergency, contact local emergency services or go to the nearest hospital.

Doctor visit helper

Prepare before seeing a doctor

A simple rural-patient checklist to help you explain symptoms clearly, ask better questions, and avoid unsafe self-treatment.

Safety note: This is not a prescription or diagnosis. For severe symptoms, pregnancy danger signs, children with serious illness, chest pain, breathing difficulty, stroke-like weakness, or major injury, seek urgent care.

Which doctor may help?

Start with a registered doctor or the nearest qualified health center.

What to tell the doctor

  • Write when the problem started and how it changed.
  • Bring old prescriptions, investigation reports, and current medicines.
  • Write allergies, pregnancy status, diabetes, kidney/liver disease, and major past illnesses.
  • Bring one family member if the patient is weak, elderly, confused, or a child.

Questions to ask

  • What is the most likely cause of my symptoms?
  • Which danger signs mean I should go to hospital quickly?
  • Which tests are necessary now, and which can wait?
  • How should I take medicines safely and what side effects should I watch for?
  • When should I come for follow-up?

Tests to discuss

  • Vital signs: temperature, pulse, blood pressure, oxygen saturation
  • Basic physical examination by a clinician
  • CBC, urine test, blood sugar, or imaging only when clinically needed

Avoid these mistakes

  • Do not use antibiotics, steroid tablets/injections, or strong painkillers without proper medical advice.
  • Do not hide pregnancy, kidney disease, ulcer, allergy, or blood thinner use.
  • Do not delay emergency care when danger signs are present.

Medicine safety and first-aid guide

This section is for patient education only. It does not replace a doctor, pharmacist, or emergency care.

Safe first steps

  • Rest, drink safe water, and observe symptoms carefully.
  • Keep a written note of symptoms, duration, temperature, medicines already taken, and allergy history.
  • Seek medical care quickly if symptoms are severe, worsening, or unusual for the patient.

OTC medicine safety

  • For mild pain or fever, ask a registered pharmacist or doctor before using common over-the-counter pain/fever medicines.
  • Do not combine multiple pain medicines without advice, especially if you have kidney disease, liver disease, stomach ulcer, asthma, pregnancy, or take blood thinners.
  • Do not give adult medicines to children unless a qualified clinician advises it.

Avoid these mistakes

  • Do not start antibiotics without a proper medical decision.
  • Do not use steroid tablets or injections casually for quick relief.
  • Do not delay emergency care because of home remedies.

Get urgent help if

  • Severe symptoms, confusion, fainting, breathing difficulty, chest pain, severe dehydration, or sudden weakness need urgent medical care.
Medicine names, dose, and timing must be decided by a qualified clinician or pharmacist after checking age, pregnancy, allergy, other diseases, and current medicines.

For rural patients and family caregivers

Patient health record and symptom diary

Write your symptoms, medicines already taken, test results, and questions before visiting a doctor. This note stays on your device unless you print or copy it.

Doctor to discuss: Doctor / qualified healthcare provider
Tests to discuss with doctor
  • Basic vital signs: temperature, pulse, blood pressure, oxygen level if needed
  • Relevant blood, urine, imaging, or specialist tests only after clinical assessment
Questions to ask
  • What is the most likely cause of my symptoms?
  • Which warning signs mean I should go to emergency care?
  • Which tests are really needed now?
  • Which medicines are safe for my age, pregnancy status, allergy, kidney/liver/stomach condition, and current medicines?

Emergency warning signs such as chest pain, severe breathing difficulty, sudden weakness, confusion, severe dehydration, major injury, or loss of bladder/bowel control need urgent medical care. Do not wait for online information.

Safe pathway to proper treatment

Patient care roadmap

Use this simple roadmap to understand the next safe steps. It is educational and does not replace examination by a doctor.

Go to emergency care if you notice:
  • Severe or rapidly worsening symptoms
  • Breathing difficulty, chest pain, fainting, confusion, severe weakness, major injury, or severe dehydration
Doctor / service to discuss: Qualified healthcare provider; specialist depends on symptoms and examination.
  1. Step 1

    Check danger signs first

    If danger signs are present, seek emergency care and do not wait for online information.

  2. Step 2

    Record the symptom story

    Write when symptoms started, severity, medicines already taken, allergies, pregnancy status, and test results.

  3. Step 3

    Visit a qualified clinician

    A doctor, nurse, or qualified healthcare provider can examine you and decide which tests or treatment are needed.

  4. Step 4

    Do only useful tests

    Do tests after clinical assessment. Avoid unnecessary tests, random antibiotics, or repeated medicines without diagnosis.

  5. Step 5

    Follow up and return early if worse

    If symptoms worsen, new warning signs appear, or treatment is not helping, return for review quickly.

Rural patient practical tips
  • Take a written symptom diary and all previous prescriptions/test reports.
  • Do not hide medicines already taken, even herbal or over-the-counter medicines.
  • Ask which warning signs mean urgent referral to hospital.

This roadmap is for education. A real diagnosis and treatment plan requires history, examination, and clinical judgment.

RX Patient Help

Ask a health question safely

Write your symptom story. A health professional or site editor can review it before any answer is prepared. This box is not for emergency care.

Emergency first: Severe chest pain, breathing trouble, unconsciousness, stroke signs, severe injury, heavy bleeding, or rapidly worsening symptoms need urgent local medical care now.

Frequently Asked Questions

Is this article a replacement for a doctor?

No. It is educational content only. Patients should consult a qualified clinician for diagnosis and treatment.

When should I seek urgent care?

Seek urgent care for severe symptoms, rapidly worsening condition, breathing difficulty, severe pain, neurological changes, or any emergency warning sign.

References

Add references, clinical guidelines, textbooks, journal articles, or trusted medical sources here. You can edit this area from the RX Article Professional Blocks panel.