{"id":1247,"date":"2017-03-17T16:38:41","date_gmt":"2017-03-17T11:08:41","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=1247"},"modified":"2026-08-14T18:00:58","modified_gmt":"2026-08-14T12:30:58","slug":"change-wordpress-site-url-backendmysql-mariadb","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/change-wordpress-site-url-backendmysql-mariadb\/","title":{"rendered":"Change wordpress site URL on backend(Mysql, Mariadb)"},"content":{"rendered":"<h2 class=\"isSelectedEnd\">Introduction<\/h2>\n<p class=\"isSelectedEnd\">Changing the WordPress Site URL is a common task when migrating a website to a new domain, moving from HTTP to HTTPS, restoring a backup, or deploying a site to a new server. While WordPress provides options to update the site address from the admin dashboard, there are situations where accessing the dashboard is not possible due to configuration issues, domain changes, or migration-related problems.<\/p>\n<p class=\"isSelectedEnd\">In such cases, updating the Site URL directly from the MySQL or MariaDB database is a reliable and efficient solution. WordPress stores website URLs in multiple database tables, including site settings, posts, pages, media attachments, and custom fields. To ensure the website functions correctly after a domain change, all references to the old URL must be updated.<\/p>\n<p>This guide demonstrates how to safely modify the WordPress Site URL using SQL queries, verify the changes, and avoid common issues that may arise during the migration process. Whether you are changing domains, enabling HTTPS, or moving a WordPress installation to a new environment, these steps will help ensure a smooth transition.<\/p>\n<h2>Prerequisites<\/h2>\n<p class=\"isSelectedEnd\">Before proceeding, ensure that:<\/p>\n<ul data-spread=\"false\">\n<li>WordPress is already installed.<\/li>\n<li>You have access to the MySQL or MariaDB server.<\/li>\n<li>You know the database name used by WordPress.<\/li>\n<li>You have taken a complete database backup.<\/li>\n<\/ul>\n<p class=\"isSelectedEnd\">This guide works regardless of the web server being used (Nginx, Apache, LiteSpeed, etc.) and is applicable to both MySQL and MariaDB databases.<\/p>\n<h2>Scenario<\/h2>\n<p class=\"isSelectedEnd\">Assume your current WordPress website URL is:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">http:\/\/domainA.com<\/code><\/pre>\n<p class=\"isSelectedEnd\">You want to change it to:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">http:\/\/domainB.com<\/code><\/pre>\n<h2>Step 1: Backup the Database<\/h2>\n<p class=\"isSelectedEnd\">Always create a backup before making any database modifications.<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">mysqldump -u root -p wordpress_db &gt; wordpress_backup.sql<\/code><\/pre>\n<p class=\"isSelectedEnd\">Replace <code dir=\"ltr\">wordpress_db<\/code> with your actual database name.<\/p>\n<h2>Step 2: Login to MySQL or MariaDB<\/h2>\n<p class=\"isSelectedEnd\">Connect to the database server:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">mysql -u root -p<\/code><\/pre>\n<p class=\"isSelectedEnd\">Select the WordPress database:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">USE wordpress_db;<\/code><\/pre>\n<h2>Step 3: Update the WordPress Site URL<\/h2>\n<p class=\"isSelectedEnd\">The WordPress site URL is stored in the <code dir=\"ltr\">wp_options<\/code> table.<\/p>\n<p class=\"isSelectedEnd\">Execute the following query:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">UPDATE wp_options\nSET option_value = REPLACE(\n    option_value,\n    'http:\/\/domainA.com',\n    'http:\/\/domainB.com'\n)\nWHERE option_name IN ('home', 'siteurl');<\/code><\/pre>\n<p class=\"isSelectedEnd\">This updates both:<\/p>\n<ul data-spread=\"false\">\n<li><code dir=\"ltr\">home<\/code> \u2013 The website homepage URL<\/li>\n<li><code dir=\"ltr\">siteurl<\/code> \u2013 The WordPress installation URL<\/li>\n<\/ul>\n<h2>Step 4: Update URLs in Posts and Pages<\/h2>\n<p class=\"isSelectedEnd\">WordPress stores links and media references inside post content. Update them using:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">UPDATE wp_posts\nSET post_content = REPLACE(\n    post_content,\n    'http:\/\/domainA.com',\n    'http:\/\/domainB.com'\n);<\/code><\/pre>\n<h2>Step 5: Update GUID Values<\/h2>\n<p class=\"isSelectedEnd\">The GUID field contains permanent identifiers for posts and attachments.<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">UPDATE wp_posts\nSET guid = REPLACE(\n    guid,\n    'http:\/\/domainA.com',\n    'http:\/\/domainB.com'\n);<\/code><\/pre>\n<h2>Step 6: Update URLs in Custom Fields<\/h2>\n<p class=\"isSelectedEnd\">Many themes and plugins store URLs in the <code dir=\"ltr\">wp_postmeta<\/code> table.<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">UPDATE wp_postmeta\nSET meta_value = REPLACE(\n    meta_value,\n    'http:\/\/domainA.com',\n    'http:\/\/domainB.com'\n);<\/code><\/pre>\n<h2>Step 7: Update HTTP to HTTPS (Optional)<\/h2>\n<p class=\"isSelectedEnd\">If you are migrating from HTTP to HTTPS, update the URLs accordingly.<\/p>\n<h3>Update Site URL<\/h3>\n<pre dir=\"ltr\"><code dir=\"ltr\">UPDATE wp_options\nSET option_value = REPLACE(\n    option_value,\n    'http:\/\/domainA.com',\n    'https:\/\/domainB.com'\n)\nWHERE option_name IN ('home', 'siteurl');<\/code><\/pre>\n<h3>Update Post Content<\/h3>\n<pre dir=\"ltr\"><code dir=\"ltr\">UPDATE wp_posts\nSET post_content = REPLACE(\n    post_content,\n    'http:\/\/domainA.com',\n    'https:\/\/domainB.com'\n);<\/code><\/pre>\n<h3>Update GUID Values<\/h3>\n<pre dir=\"ltr\"><code dir=\"ltr\">UPDATE wp_posts\nSET guid = REPLACE(\n    guid,\n    'http:\/\/domainA.com',\n    'https:\/\/domainB.com'\n);<\/code><\/pre>\n<h3>Update Custom Fields<\/h3>\n<pre dir=\"ltr\"><code dir=\"ltr\">UPDATE wp_postmeta\nSET meta_value = REPLACE(\n    meta_value,\n    'http:\/\/domainA.com',\n    'https:\/\/domainB.com'\n);<\/code><\/pre>\n<h2>Step 8: Verify the Changes<\/h2>\n<p class=\"isSelectedEnd\">Check whether the URLs have been updated successfully.<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">SELECT option_name, option_value\nFROM wp_options\nWHERE option_name IN ('home', 'siteurl');<\/code><\/pre>\n<p class=\"isSelectedEnd\">Example output:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">home      https:\/\/domainB.com\nsiteurl   https:\/\/domainB.com<\/code><\/pre>\n<h2>Step 9: Clear Cache and Restart Services<\/h2>\n<p class=\"isSelectedEnd\">After updating the database:<\/p>\n<h3>Clear WordPress Cache<\/h3>\n<p class=\"isSelectedEnd\">If you use caching plugins such as:<\/p>\n<ul data-spread=\"false\">\n<li>WP Rocket<\/li>\n<li>LiteSpeed Cache<\/li>\n<li>W3 Total Cache<\/li>\n<li>WP Super Cache<\/li>\n<\/ul>\n<p class=\"isSelectedEnd\">Clear all cached data.<\/p>\n<h3>Clear Redis Cache<\/h3>\n<pre dir=\"ltr\"><code dir=\"ltr\">redis-cli FLUSHALL<\/code><\/pre>\n<h3>Restart PHP-FPM<\/h3>\n<pre dir=\"ltr\"><code dir=\"ltr\">systemctl restart php-fpm<\/code><\/pre>\n<p class=\"isSelectedEnd\">Or:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">systemctl restart php8.2-fpm<\/code><\/pre>\n<h2>Recommended Method: WP-CLI<\/h2>\n<p class=\"isSelectedEnd\">Direct database updates work well for simple websites. However, modern WordPress installations often contain serialized data stored by themes and plugins.<\/p>\n<p class=\"isSelectedEnd\">Updating serialized data with SQL can corrupt values and break the website.<\/p>\n<p class=\"isSelectedEnd\">A safer approach is to use WP-CLI:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">wp search-replace 'https:\/\/domainA.com' 'https:\/\/domainB.com' --all-tables<\/code><\/pre>\n<p class=\"isSelectedEnd\">Benefits of WP-CLI:<\/p>\n<ul data-spread=\"false\">\n<li>Handles serialized data correctly<\/li>\n<li>Updates all WordPress tables<\/li>\n<li>Reduces the risk of data corruption<\/li>\n<li>Faster and more reliable for large websites<\/li>\n<\/ul>\n<h2>Troubleshooting<\/h2>\n<h3>Site Redirects Back to the Old Domain<\/h3>\n<ul data-spread=\"false\">\n<li>Clear browser cache.<\/li>\n<li>Clear WordPress cache plugins.<\/li>\n<li>Verify <code dir=\"ltr\">home<\/code> and <code dir=\"ltr\">siteurl<\/code> values in <code dir=\"ltr\">wp_options<\/code>.<\/li>\n<li>Check web server redirect rules.<\/li>\n<\/ul>\n<h3>Images Are Not Loading<\/h3>\n<p class=\"isSelectedEnd\">Run a search and replace operation on the database to update image URLs stored in posts and metadata.<\/p>\n<h3>Mixed Content Errors After HTTPS Migration<\/h3>\n<p class=\"isSelectedEnd\">Ensure all HTTP references have been updated to HTTPS.<\/p>\n<p class=\"isSelectedEnd\">You can identify mixed content issues using browser developer tools.<\/p>\n<h2>Conclusion<\/h2>\n<p class=\"isSelectedEnd\">Changing a WordPress site&#8217;s URL directly from MySQL or MariaDB is a quick and effective solution when migrating domains, moving to HTTPS, or restoring backups. While SQL queries are suitable for basic URL changes, WP-CLI is the preferred method for production environments because it safely handles serialized data and plugin-specific configurations.<\/p>\n<p>Always back up your database before making changes and verify the website thoroughly after updating the URLs.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Changing the WordPress Site URL is a common task when migrating a website to a new domain, moving from HTTP to HTTPS, restoring a backup, or deploying a site to a new server. While WordPress provides options to update the site address from the admin dashboard, there are situations&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/change-wordpress-site-url-backendmysql-mariadb\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Change wordpress site URL on backend(Mysql, Mariadb)<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":true,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[386,387,265],"tags":[167],"class_list":{"0":"post-1247","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-database","7":"category-mysql-database","8":"category-wordpress-2","9":"tag-wordpress-2","10":"h-entry","12":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/change-wordpress-site-url-backendmysql-mariadb\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction Changing the WordPress Site URL is a common task when migrating a website to a new domain, moving from HTTP to HTTPS, restoring a backup, or deploying a site to a new server. While WordPress provides options to update the site address from the admin dashboard, there are situations&hellip; Continue Reading Change wordpress site URL on backend(Mysql, Mariadb)\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/change-wordpress-site-url-backendmysql-mariadb\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-03-17T11:08:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-14T12:30:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/change-wordpress-site-url-backendmysql-mariadb\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/change-wordpress-site-url-backendmysql-mariadb\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Change wordpress site URL on backend(Mysql, Mariadb)\",\"datePublished\":\"2017-03-17T11:08:41+00:00\",\"dateModified\":\"2026-08-14T12:30:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/change-wordpress-site-url-backendmysql-mariadb\\\/\"},\"wordCount\":657,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"Wordpress\"],\"articleSection\":[\"Database\",\"Mysql\",\"Wordpress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/change-wordpress-site-url-backendmysql-mariadb\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/change-wordpress-site-url-backendmysql-mariadb\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/change-wordpress-site-url-backendmysql-mariadb\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2017-03-17T11:08:41+00:00\",\"dateModified\":\"2026-08-14T12:30:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/change-wordpress-site-url-backendmysql-mariadb\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/change-wordpress-site-url-backendmysql-mariadb\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/change-wordpress-site-url-backendmysql-mariadb\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Change wordpress site URL on backend(Mysql, Mariadb)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/pheonixsolutions.com\\\/blog\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/change-wordpress-site-url-backendmysql-mariadb\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction Changing the WordPress Site URL is a common task when migrating a website to a new domain, moving from HTTP to HTTPS, restoring a backup, or deploying a site to a new server. While WordPress provides options to update the site address from the admin dashboard, there are situations&hellip; Continue Reading Change wordpress site URL on backend(Mysql, Mariadb)","og_url":"https:\/\/pheonixsolutions.com\/blog\/change-wordpress-site-url-backendmysql-mariadb\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2017-03-17T11:08:41+00:00","article_modified_time":"2026-08-14T12:30:58+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/change-wordpress-site-url-backendmysql-mariadb\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/change-wordpress-site-url-backendmysql-mariadb\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Change wordpress site URL on backend(Mysql, Mariadb)","datePublished":"2017-03-17T11:08:41+00:00","dateModified":"2026-08-14T12:30:58+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/change-wordpress-site-url-backendmysql-mariadb\/"},"wordCount":657,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["Wordpress"],"articleSection":["Database","Mysql","Wordpress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/change-wordpress-site-url-backendmysql-mariadb\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/change-wordpress-site-url-backendmysql-mariadb\/","url":"https:\/\/pheonixsolutions.com\/blog\/change-wordpress-site-url-backendmysql-mariadb\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2017-03-17T11:08:41+00:00","dateModified":"2026-08-14T12:30:58+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/change-wordpress-site-url-backendmysql-mariadb\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/change-wordpress-site-url-backendmysql-mariadb\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/change-wordpress-site-url-backendmysql-mariadb\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Change wordpress site URL on backend(Mysql, Mariadb)"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/pheonixsolutions.com\/blog"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-k7","jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1247","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=1247"}],"version-history":[{"count":2,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1247\/revisions"}],"predecessor-version":[{"id":10828,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1247\/revisions\/10828"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=1247"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=1247"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=1247"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}