Geoff wrote:
On 25 Jan 2006 at 15:19, William Stokes wrote:


Hello,

I Have a web site on one server and a test site on another. How can I build the hyperlinks so that they work on both servers without modification.

For example build this link dynamically:
"http://www.domain.com/www/test.php

In test server the same should be:
"http://internalserver/www/test.php


Non-php solution:

Use relative links. Instead of referring to a page as "http://www.domain.com/www/test.php";, rather just use "/www/test.php" or even just "/test.php", if the script containing that link is already in /www. Thus your links will look the same on both versions.

/test.php would refer to root.
so it would be www.domain.com/test.php
not www.domain.com/www/test.php (!)

probably a small typo ;)

Barry

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to