Silverstripe Godaddy Apache 2.4 upgrade issue

Page links not found & no styling

GoDaddy upgraded from Apache 2.2 to 2.4

Per http://www.silverstripe.org/general-questions/show/23917?start=16

Edit /sapphire/main/php

Before:

// Apache rewrite rules use this
Apache rewrite rules use this
if (isset($_GET['url']))
 {$url = $_GET['url'];

after:

// Apache 2.4 rewrite rules use this
if (isset($_GET['mysite.com'])) {
 $url = $_GET['mysite.com']; 

xxx