WordPress: Performance Tip
In einem Artikel auf WPengineer.com über die Migration eines WordPress Blog zu einer neuen Domain fand ich folgenden Tip:
Open the file (wp-config.php) in your editor and add following data:
define('WP_SITEURL', 'http://www.example.com'); define('WP_HOME', 'http://www.example.com/blog');I suggest to this in every other blog too. You save a request to the database and it improves the performance of your installation.
Schick, war mir nicht klar, dass WordPress diese Konstanten akzeptiert.

