Re: UrlRewrite htaccess confusion

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Shawn McKenzie wrote:
> 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>';
> 

Or the simplist approach is to define at constant at app initialization
and use it:

echo '<a href="' . BASEURL .
'packages/basketball/2010/nba-all-star-game">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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux