Skip to content

Instantly share code, notes, and snippets.

@hanspagel
Last active August 29, 2015 14:17
Show Gist options
  • Save hanspagel/b9c10c502b6997bf2faa to your computer and use it in GitHub Desktop.
Save hanspagel/b9c10c502b6997bf2faa to your computer and use it in GitHub Desktop.
Search & Replace URLs in WordPress Database

Go to WordPress Installation (e. g. wordpress/)

cd wordpress/

Download WP Command Line Interface

curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar

Dry-Run

php wp-cli.phar search-replace www.ALTEURL.de www.NEUEURL.de --recurse-objects --precise --dry-run

Search & Replace URLs

php wp-cli.phar search-replace www.ALTEURL.de www.NEUEURL.de --recurse-objects --precise
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment