Rob Gould wrote: > You are indeed correct! Absolute URLs for everything, images, css, > javascript, and links fixed the issue. Took me forever to change every > link in the whole site, but it's happy now. Seems like there ought to > be an easier way. > There is an easier way. The logic depends upon your app, but create a function that builds and optionally echos URLs for you. It can work out the base url or you can do that when you initialize your app and define it as a constant. It can be as simple or as complex as you need. <a href="<?php makelink($file, $arrayOfVars); ?>">Something</a> -- or -- echo '<a href="' . makelink($file, $arrayOfVars) . '">Something</a>'; -- Thanks! -Shawn http://www.spidean.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php