On 8/17/2012 6:35 PM, Jim Giner wrote:
On 8/17/2012 7:16 PM, Jim Lucas wrote:

You could simply remove all full domain+path URL links and replace
them with absolute path urls only.

turn http://www.somedomain.com/path/to/my/webpage.html

into /path/to/my/webpage.html

This would work with either domain.

Those would be "relative paths", ..o?


No.

Quick Google search turns up this:

http://www.uvsc.edu/disted/decourses/dgm/2120/IN/steinja/lessons/06/06_04.html

I have three description or types of paths that I use normally.

I feel the first two generally get grouped together by most persons.

Full or complete path:
        <a href="http://www.cmsws.com/index.php";>Home</a>

Absolute Path:
        <a href="/index.php">Home</a>

Relative:
        <a href="index.php">Home</a>

--
Jim Lucas
http://cmsws.com

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

Reply via email to