Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a new web site for used cars, lets say we have a page to display car details in this physical path (www.sitename.com/car-details.aspx) and its only needs a car-id parameter to grab car details in display.

I installed an URL forwording system like this

www.sitename.com/used/cars/{make-name}/{model-name}/{car-id}/{add-title}  
www.sitename.com/used/cars/skoda/octavia/123456/car-for-sell-in-a-good-condition

my question is
what is the best structure for my urls (and why please), I have some examples:

less depth -

www.sitename.com/used-cars/{make-name}-{model-name}-{car-id}/{add-title}

with .html -

www.sitename.com/used/cars/{make-name}/{model-name}/{car-id}/{add-title}.html

without add-title -

www.sitename.com/used-cars/{make-name}-{model-name}-{car-id}

or somthing else..

note: all url parts can grab related data - for example
www.sitename.com/used/cars/ - will forward to a page contains all used cars
www.sitename.com/used/cars/{make-name}/ - will forward to a page contain all cars from this maker only
etc.. for all url parts.

Thanks

share|improve this question
2  
This is really a subjective question. Plus other aspects of a site are far more important than the URL. – woz Jul 9 '12 at 19:02
If it's about SEO I always say: content content content and good backlinks. – PeeHaa 埽 Jul 9 '12 at 19:04
@PeeHaa: Asker asked abput URL, not content. So probably that was the first mistake ;) – hakre Jul 18 '12 at 8:24
I know what I have to do about content, I just asking about somthing I don`t know, and I need to learn about it, Do I have to ask about every detail in my project ?!!! – Prince Waleed Jul 19 '12 at 20:05

1 Answer

up vote 1 down vote accepted

I don`t know why this got down-voted.

This is a good question and there is nothing "subjective" about it.

The best answer is the HTL one: www.sitename.com/used/cars/{make-name}/{model-name}/{car-id}/{add-title}.html

For the following reasons:

  1. "Depth" is good, as long as you are not overdoing it (in this case you don't)
  2. No dynamic parameters = no canonicalization issues
  3. HTML static URLs = lesser SQL injection risk (i.e. compared to PHP dynamicly generated URL that requires verification)

Having said that, this approach is not always feasible and I fear this is especially true for e-commerce/catalog sites.

The second best approach is the:
www.sitename.com/used-cars/{make-name}-{model-name}-{car-id}/{add-title}

(I'm assuming we are actually talking about dynamic php URL, something like: /used-cars?name=XXX,model=XXX... here)

For this approach you`ll need to use rel=canonical to prevent duplicate content.

share|improve this answer
Cannot see the relation between an URL and lesser SQL Injection risk. – Fabian Barney Jul 10 '12 at 9:29
1  
Thank you very much. – Prince Waleed Jul 10 '12 at 17:13
SQL injections can (and often do) use URLs. If you URL structure does not accept variables (i.e. 1.html) the injection simply wont work. On the other hand, if you are using parameters and variables, then you open up yourself to injection via "illegal" variables (think of search result page url... how can you verify search string send via variable? if you can't then a hacker can use this to inject your DB) But, as I`ve said - often an "HTML" only URLs just cannot happen. If you use dynamic features (like search) you'll need dynamic URL and some kind of WAF security solution. – Igal Zeifman Jul 18 '12 at 7:46
1  
There is semantic in dynamic parametrization and search engines do reflect that. So you create nice readable URLs for humans, search engines have a different preference nowadays. But well, it ain't subjective, right? Take care. – hakre Jul 18 '12 at 8:23
You don't use static URL's to prevent SQL injection. – PeeHaa 埽 Jul 18 '12 at 8:42
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.