Looks like the links on your page are being generated as http://www.ravoof.com instead of http://ravoof.com. I'm having a somewhat similar problem (links are being generated to a local url), but haven't figured it out just yet.
The baseurl, set on line 16 of plog-load_config.php, is represented as a full path. Try setting it to use a relative path, like so:
$config["baseurl"] = "./";
This works for me when I move my site around on my directory tree or between servers. The browser just prepends whatever url it thinks you are at to any links on your page. I don't know if this has any impact on site security, but hard to imagine why it would. (But then, computers are full of surprises.)