Broken CSS after changing the site URL
I have a self-hosted Wordpress blog on my home server. Previously I accessed it directly via its original IP address taken from DHCP, but now I have configured a static IP address for it. The problem is that now all the CSS is broken.
I have updated my wp-config.php
file adding the following two lines:
define('WP_HOME','http://192.168.0.100/myblog/');
define('WP_SITEURL','http://192.168.0.100/myblog/');
and I have restarted apache, but the CSS is still broken. Is there some other configuration file that I should update?