Uniform Resource Locator (URL) is a Uniform Resource Identifier (URI) that specifies where an identified resource is available and the mechanism for retrieving it.
367
votes
23answers
180k views
Get query string values in JavaScript
Is there a pluginless way of retrieving querystring values via jQuery (or without)? If so, how, and if not what plugin do you recommend?
322
votes
4answers
42k views
What's the shebang/hashbang (#!) in Facebook and new Twitter URLs for?
I've just noticed that the long, convoluted Facebook URLs that we're used to now look like this:
http://www.facebook.com/example.profile#!/pages/Another-Page/123456789012345
As far as I can recall, ...
304
votes
8answers
71k views
What is the maximum length of a URL?
Does it differ between browsers?
Does the HTTP protocol dictate it?
183
votes
6answers
93k views
How to encode a URL in Javascript?
How do you safely encode a URL using Javascript such that it can be put into a GET string?
var myUrl = "http://example.com/index.html?param=1&anotherParam=2";
var myOtherUrl = ...
133
votes
9answers
202k views
How to get the current URL in jQuery?
I am using jQuery. I'd like to get the path of the current URL and assign it to a variable.
Example URL:
http://localhost/menuname.de?foo=bar&number=0"
126
votes
12answers
18k views
Path.Combine for Urls?
Path.Combine is handy, but is there a similar function in the .NET framework for Urls?
I'm looking for syntax like this:
Url.Combine("Http://MyUrl.com/", "/Images/Image.jpg")
which would return:
...
104
votes
3answers
92k views
Get current URL with javascript? [closed]
Possible Duplicate:
Request Address in Javascript
All I want is to get the website URL. Not the URL as taken from a link. On the page loading I need to be able to grab the full, current URL ...
102
votes
11answers
35k views
How to get current URL in Rails?
How can I get the current absolute URL in my Rails view?
The request.request_uri only returns the relative URL.
98
votes
11answers
90k views
How do I, with JavaScript, change the URL in the browser without loading the new page?
How would I have a JavaScript action that may have some effects on the current page but would also change the URL in the browser so if the user hits reload or bookmark the new URL is used? It would ...
91
votes
16answers
12k views
What's the difference between a URI and a URL?
People talk about URLs and URIs as if they're different things, but they look the same to the naked eye. What's the difference between the two?
70
votes
14answers
14k views
How to code a URL shortener?
I want to create a URL shortener service where you can write a long URL into an input field and the service shortens the URL to "http://www.example.org/abcdef". Instead of "abcdef" there can be any ...
61
votes
17answers
30k views
How to build a query string for a URL in C#?
A common task when calling web resources from a code is building a query string to including all the necessary parameters. While by all means no rocket science, there are some nifty details you need ...
59
votes
13answers
32k views
What is the best regular expression to check if a string is a valid URL?
How can I check if a given string is a valid URL address?
My knowledge of regular expressions is basic and doesn't allow me to choose from the hundreds of regular expressions I've already seen on the ...
58
votes
13answers
29k views
Parsing query strings in Java
J2EE has ServletRequest.getParameterValues().
On non-EE platforms, URL.getQuery() simply returns a string.
What's the normal way to properly parse the query string in a URL when not on J2EE?
...
58
votes
10answers
23k views
Modify Address Bar URL in AJAX App to Match Current State
I'm writing an AJAX app, but as the user moves through the app, I'd like the URL in the address bar to update despite the lack of page reloads. Basically, I'd like for them to be able to bookmark at ...
53
votes
2answers
35k views
How can I open a URL in Android's web browser from my application?
How to open an URL from code in the built-in web browser rather than within my application ?
I tried this :
Intent myIntent = new Intent(Intent.ACTION_VIEW,
Uri.parse(strURL));
...
49
votes
10answers
33k views
Modify the URL without reloading the page
Is there any way I can modify the URL of the current page without reloading the page?
I would like to access the portion before the # hash if possible.
I only need to change the portion after the ...
49
votes
14answers
4k views
Why do some websites add “Slugs” to the end of URLs?
Many websites, including this one, add what are apparently called slugs - descriptive but as far as I can tell useless bits of text - to the end of URLs.
For example, the URL the site gives for this ...
43
votes
3answers
38k views
How do I make an http request using cookies on Android?
I'd like to make an http request to a remote server while properly handling cookies (eg. storing cookies sent by the server, and sending those cookies when I make subsequent requests). It'd be nice ...
42
votes
20answers
8k views
URLs: Dash vs. Underscore
Should it be /about_us or /about-us?
From usability point of view, I personally think /about-us is much better for end-user yet Google and most other websites (and javascript frameworks) use ...
38
votes
13answers
33k views
How to construct a relative path in Java from two absolute paths (or URLs)?
Given two absolue paths, e.g.
/var/data/stuff/xyz.dat
/var/data
How can one create a relative path that uses the second path as its base? In the example above, the result should be: ./stuff/xyz.dat
37
votes
9answers
2k views
Is there any way to specify a suggested filename when using data: URI?
If for example you follow the link:
data:application/octet-stream;base64,SGVsbG8=
The browser will prompt you to download a file consisting of the data held as base64 in the link itself. Is there ...
35
votes
7answers
30k views
URL to load resources from the classpath in Java
In Java, you can load all kinds of resources using the same API but with different URL protocols:
file:///tmp.txt
http://127.0.0.1:8080/a.properties
...
34
votes
7answers
25k views
Can PHP read the hash portion of the URL?
Assuming a URL of:
www.mysite.com?val=1#part2
PHP can read the request variables "val1" using the GET array.
Is the hash value "part2" also readable? or is this only upto the browser and ...
34
votes
4answers
33k views
Capturing url parameters in request.GET
I am currently defining regular expressions in order to capture parameters in a url, as described in the tutorial. How do I access parameters from the url as part the HttpRequest object? My ...
33
votes
14answers
43k views
PHP validation/regex for URL
I've been looking for a simple regex for URL's, does anybody have one handy that works well? I didn't find one with the zend framework validation classes and have seen several implementations.
...
32
votes
1answer
9k views
30
votes
2answers
504 views
Is IIS performing an illegal character substitution? If so, how to stop it?
Context: ASP.NET MVC running in IIS, with a a UTF-8 %-encoded URL.
Using the standard project template, and a test-action in HomeController like:
public ActionResult Test(string id)
{
return ...
28
votes
3answers
2k views
Can I change all my http:// links to just //?
Dave Ward says,
It’s not exactly light reading, but section 4.2 of RFC 3986 provides for fully qualified URLs that omit protocol (the HTTP or HTTPS) altogether. When a URL’s protocol is omitted, ...
28
votes
13answers
42k views
Adding a parameter to the URL with JavaScript
In a web application that makes use of AJAX calls, I need to submit a request but add a parameter to the end of the URL, for example:
Original URL:
http://server/myapp.php?id=10
Resulting URL:
...
27
votes
1answer
4k views
Generate URL in HTML helper
Normally in an ASP.NET view one could use the following function to obtain a URL (not an <a>):
Url.Action("Action", "Controller");
However, I cannot find how to do it from a custom HTML ...
27
votes
2answers
11k views
Code for decoding/encoding a modified base64 URL
I want to base64 encode data to put it in a URL and then decode it within my HttpHandler.
I have found that Base64 Encoding allows for a '/' character which will mess up my UriTemplate matching. ...
27
votes
6answers
38k views
Change URL parameters with jQuery?
I have this URL:
site.fwx?position=1&archiveid=5000&columns=5&rows=20&sorting=ModifiedTimeAsc
what I need is to be able to change the 'rows' url param value to something i specify, ...
26
votes
2answers
12k views
android webview click opens default browser
I have a simple problem, i have loaded an external url in my webview. Now wat i need is that wen the user clicks on the links on the page loaded, it has to work like a normal browser and open the link ...
26
votes
12answers
3k views
Detecting a (naughty or nice) URL or link in a text string
How can I detect (with regular expressions or heuristics) a web site link in a string of text such as a comment?
The purpose is to prevent spam. HTML is stripped so I need to detect invitations to ...
24
votes
10answers
5k views
Is a colon safe for friendly-URL use?
We are designing a URL system that will specify application sections as words separated by slashes. Specifically, this is in GWT, so the relevant parts of the URL will be in the hash (which will be ...
24
votes
1answer
10k views
Android Respond To URL in Intent
I want my intent to be launched when the user goes to a certain url: for example, the android market does this with http://market.android.com/ urls. so does youtube. I want mine to do that too. If ...
23
votes
6answers
4k views
How can I have lowercase routes in ASP.NET MVC?
How can I have lowercase, plus underscore if possible, routes in ASP.NET MVC? So that I would have /dinners/details/2 call DinnersController.Details(2) and, if possible, /dinners/more_details/2 call ...
22
votes
7answers
15k views
Which characters make a url invalid?
I am writting bbcode for my own forum (based on php); how to find out if it is an invalid url provided in the the [url] tag? Which characters make a url invalid?
22
votes
11answers
6k views
How to convert an integer to the shortest url-safe string in Python?
I want the shortest possible way of representing an integer in a URL. For example, 11234 can be shortened to '2be2' using hexadecimal. Since base64 uses is a 64 character encoding, it should be ...
22
votes
5answers
16k views
How to get Url Hash (#) from server side
I know on client side (javascript) you can use windows.location.hash but could not find anyway to access from the server side.
22
votes
8answers
7k views
Get the subdomain from a URL
Getting the subdomain from a URL sounds easy at first.
http://www.domain.example
Scan for the first period then return whatever came after the "http://" ...
Then you remember
...
21
votes
4answers
4k views
Unicode characters in URLs
In 2010, would you serve URLs containing UTF-8 characters in a large web portal?
Unicode characters are forbidden as per the RFC on URLs (see here). They would have to be percent encoded to be ...
21
votes
6answers
28k views
C# How can I check if a URL exists/is valid?
I am making a simple program in visual c# 2005 that looks up a stock symbol on Yahoo! Finance, downloads the historical data, and then plots the price history for the specified ticker symbol.
I know ...
21
votes
10answers
16k views
URL-encoded slash in URL
My Map is:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with params
new { controller = ...
21
votes
5answers
12k views
.NET - Get protocol, host, and port
Is there a simple way in .NET to quickly get the current protocol, host, and port? For example, if I'm on the following URL:
http://www.mywebsite.com:80/pages/page1.aspx
I need to return:
...
20
votes
11answers
18k views
Sanitizing strings to make them URL and filename safe?
I am trying to come up with a function that does a good job of sanitizing certain strings so that they are safe to use in the URL (like a post slug) and also safe to use as file names. For example, ...
20
votes
8answers
468 views
What does using RESTful URLs buy me?
I've been reading up on REST, and I'm trying to figure out what the advantages to using it are. Specifically, what is the advantage to REST-style URLs that make them worth implementing over a more ...
20
votes
2answers
5k views
Download image from url
I am trying to download the image from the url http://a3.twimg.com/profile_images/414797877/05052008321_bigger.jpg
I am using the following code, but image is not saved. I want to know what i m doing ...
20
votes
2answers
21k views
java.net.URLEncoder.encode(String) is deprecated, what should I use instead?
I get the following warning when using java.net.URLEncoder.encode:
warning: [deprecation] encode(java.lang.String)
in java.net.URLEncoder has been deprecated
What should I be using instead?
...