What are the url parameters naming convention or standards to follow - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T05:46:08Zhttp://stackoverflow.com/feeds/question/568929http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/568929/what-are-the-url-parameters-naming-convention-or-standards-to-follow6What are the url parameters naming convention or standards to followDinesh Manne2009-02-20T09:43:42Z2009-02-20T10:46:46Z
<p>Are there any naming conventions or standards for Url parameters to be followed. I generally use camel casing like userId or itemNumber. As i am about to start of a new project, i was searching whether there is anything for this, and could not find anything. I am not looking at this from a perspective of language or framework but more as a general web standard.</p>
http://stackoverflow.com/questions/568929/what-are-the-url-parameters-naming-convention-or-standards-to-follow/568942#5689420Answer by Fabian Vilers for What are the url parameters naming convention or standards to followFabian Vilers2009-02-20T09:47:58Z2009-02-20T09:47:58Z<p>Never heard about conventions on query string. Like you, I generally use Camel casing.</p>
http://stackoverflow.com/questions/568929/what-are-the-url-parameters-naming-convention-or-standards-to-follow/568944#5689442Answer by John Topley for What are the url parameters naming convention or standards to followJohn Topley2009-02-20T09:49:11Z2009-02-20T09:49:11Z<p>There are no standards that I'm aware of. Just be mindful of IE's <a href="http://support.microsoft.com/kb/208427" rel="nofollow">URL length limit</a> of 2,083 characters.</p>
http://stackoverflow.com/questions/568929/what-are-the-url-parameters-naming-convention-or-standards-to-follow/568949#5689490Answer by teknohippy for What are the url parameters naming convention or standards to followteknohippy2009-02-20T09:51:43Z2009-02-20T09:51:43Z<p>Like the other answers I've not heard about any conventions.</p>
<p>The only "standard" I would adhere to is to use the more search engine friendly practice of using a URL rewriter.</p>
http://stackoverflow.com/questions/568929/what-are-the-url-parameters-naming-convention-or-standards-to-follow/568964#5689640Answer by Jeremy French for What are the url parameters naming convention or standards to followJeremy French2009-02-20T09:58:56Z2009-02-20T09:58:56Z<p>There are no standards that I know of, and case shouldn't matter.</p>
<p>However within your application (website), you should stick to your own standards. For your own sanity if nothing else. </p>
http://stackoverflow.com/questions/568929/what-are-the-url-parameters-naming-convention-or-standards-to-follow/568997#5689970Answer by vartec for What are the url parameters naming convention or standards to followvartec2009-02-20T10:11:53Z2009-02-20T10:11:53Z<p>I use lowercase. Depending on the technology you use, QS is either threated as case-sensitive (eg. PHP) or not (eg. ASP). Using lowercase avoids possible confusion.</p>
http://stackoverflow.com/questions/568929/what-are-the-url-parameters-naming-convention-or-standards-to-follow/568999#5689995Answer by David Grant for What are the url parameters naming convention or standards to followDavid Grant2009-02-20T10:13:07Z2009-02-20T10:46:46Z<p>I recommend reading <a href="http://www.w3.org/Provider/Style/URI" rel="nofollow">Cool URI's Don't Change</a> by Tim Berners-Lee for an insight into this question. If you're using parameters in your URI, it might be better to rewrite them to reflect what the data actually means.</p>
<p>So instead of having the following:</p>
<pre><code>/index.jsp?isbn=1234567890
/author-details.jsp?isbn=1234567890
/related.jsp?isbn=1234567890
</code></pre>
<p>You'd have</p>
<pre><code>/isbn/1234567890/index
/isbn/1234567890/author-details
/isbn/1234567890/related
</code></pre>
<p>It creates a more obvious data structure, and means that if you change the platform architecture, your URI's don't change. Without the above structure, </p>
<pre><code>/index.jsp?isbn=1234567890
</code></pre>
<p>becomes</p>
<pre><code>/index.aspx?isbn=1234567890
</code></pre>
<p>which means all the links on your site are now broken.</p>
<p>In general, you should only use query strings when the user could reasonably expect the data they're retrieving to be generated, e.g. with a search. If you're using a query string to retrieve an unchanging resource from a database, then use URL-rewriting.</p>
http://stackoverflow.com/questions/568929/what-are-the-url-parameters-naming-convention-or-standards-to-follow/569002#5690020Answer by Renaud Bompuis for What are the url parameters naming convention or standards to followRenaud Bompuis2009-02-20T10:13:53Z2009-02-20T10:13:53Z<p>Standard for URI are defined by <a href="http://www.ietf.org/rfc/rfc2396.txt" rel="nofollow">RFC2396</a>.<br />
Anything after the standardized portion of the URL is left to you.</p>
<p>You probably only want to follow a particular convention on your parameters based on the framework you use.<br />
Most of the time you wouldn't even really care because these are not under your control, but when they are, you probably want to at least be consistent and try to generate user-friendly bits:</p>
<ul>
<li>that are short,</li>
<li>if they are meant to be directly accessible by users, they should be easy to remember,</li>
<li>case-insensitive (may be hard depending on the server OS).</li>
<li>follow some <a href="http://www.seomoz.org/blog/11-best-practices-for-urls" rel="nofollow">SEO guidelines and best practices</a>, they may help you a lot.</li>
</ul>
<p>I would say that cleanliness and user-friendliness are laudable goals to strive for when presenting URLs.<br />
StackOverflow does a fairly good job of it.</p>