When you download all your files to your WWW folder, change the wp-config.php file.
If you run it local then use local in the define part.
This define part means where are your files stored, not the database. you ill then need to run search and replace on your database to change any url links. This can run into around 800 even if you use relative links.
1 2 3 4 |
define('WP_SITEURL', "http://localhost:3700/Milestone"); define('WP_HOME', "http://localhost:3700/Milestone"); |
I have a port number of 3700, you may have to use variations of this.
1 2 3 4 |
define('WP_SITEURL', "http://localhost/Milestone"); define('WP_HOME', "http://localhost/Milestone"); |