comperr
06-02-2007, 10:38 PM
I need blah.com to redirect to blah.free.com
here is my code:
This works, but the background images in blah.free.com don't show up.
here is my .htaccess
RewriteEngine On
RewriteRule ^([^.]+)$ index.php?url=$1 [L]
here is my index.php file
<?php
include ("http://blah.free.com/".$_GET['url']);
?>
here is my code:
This works, but the background images in blah.free.com don't show up.
here is my .htaccess
RewriteEngine On
RewriteRule ^([^.]+)$ index.php?url=$1 [L]
here is my index.php file
<?php
include ("http://blah.free.com/".$_GET['url']);
?>