Tagged Questions

7
votes
3answers
3k views

PHP: How to resolve a relative url

I need a function that given a relative URL and a base returns an absolute URL. I've searched and found many functions that do it different ways. resolve("../abc.png", ...
1
vote
1answer
277 views

Relative URLs in JSP specification

I have taken below paragraphs from JSP 2.1 specification document. I'm confused and I need some help with this. A page relative path is a path that does not start with a slash (/). It is to be ...
0
votes
1answer
144 views

Checking for relative vs absolute paths/URLs in PHP

I need to implement functions to check whether paths and urls are relative, absolute, or invalid (invalid syntactically- not whether resource exists). What are the range of cases I should be looking ...
0
votes
1answer
116 views

Web development - relative URLs without duplicating files

I have a site with index.php in the root folder, images in /img , and overview.php in /content . I have a sidebar.php file that is included in both index.php and overview.php . How should I refer to ...