Tagged Questions
The relative-url tag has no wiki summary.
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", ...
4
votes
2answers
113 views
How to work with submodules and n-tiers git repository strategies
We are migrating to git. We have a large number of modules that make up our products, some of them are shared between products. The product is represented by a "thin" super repository ...
4
votes
2answers
2k views
How to get “raw” href contents in JavaScript
I am trying to write a GreaseMonkey script in which I want to find all of the links that are relative links. It seemed to me that the way to do that would be to match the contents of href against ...
1
vote
1answer
27 views
SharePoint removing trailing slashes in URL's
I'm havig an issue with SharePoint 2010 Removing trailing slashes from URL's; I have 3 scenarios where this happens outlined below: ( all are happening on a Publishing Site )
If I have a Summary ...
1
vote
1answer
58 views
Absolute URL from relative path
I've got a base URL and some relative URIs in that document I want you have the absolute path of.
E.g. base = https://example.com/some/path.html?query=string and relative URIs in that document:
...
1
vote
1answer
55 views
Is there a way to rewrite all relative URL:s when inserting a HTML fragment in jQuery?
I'm loading a HTML fragment into a page using a jQuery AJAX call. The fragment is loaded from a separate directory on the server and I want to be able to reuse it (with its links to scripts and ...
1
vote
2answers
501 views
Rails 3.1 sub uri assets path issue
I am currently using rails 3.1.0.rc1 and when i deploy it to a server which is using passenger and it is deployed to a suburi.
But when I go into look at the site, path to the style-sheets and ...
1
vote
1answer
275 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 ...
1
vote
5answers
709 views
Switch to SSL using a relative URL
I would like to create a relative link that switches the current protocol from http to https. The last place I worked had something set up on the server so that you could make that happen, but I don't ...
0
votes
1answer
78 views
MVC Ajax action relative to current controller
I'm trying to get an Ajax call from a link in a master page.
So I want to specify only the action relative to the current page/controller.
i.e.
$.ajax({
url: '/Save',
type: "GET",
...
0
votes
1answer
141 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 ...
0
votes
1answer
155 views
relative link for directory above
I've got a file structure like so
Root
-index.html
-adirectory
->fileinthedirectory.html
I'd like to create a relative link from fileinthedirectory.html to index.html since /index.html links to ...
0
votes
1answer
157 views
PHP - Calling Relative URL within = 'xx' apostrophe's
I'm trying to insert a relative URL in the code below before "/images" in $thumb_directory and $orig_directory however I'm not sure how to do so within 'apostrophe's'. Also, this is a WordPress ...