Note that there are some explanatory texts on larger screens.

plurals
  1. POSEO layout of the website
    primarykey
    data
    text
    <p>I am making one website about books and the user reaches the book which he/she intends by traversing though the subjects, then categories and then the subcategories. </p> <p>As usual, I have made pages that use query strings like this </p> <blockquote> <p>www.mywebsite.com/subjects.aspx?subjectid=10</p> </blockquote> <p>The subjectid refers to one of the subjects. </p> <p>The the user selected the categories and then subcategories and reaches the book.Now, everything is referred by it's id and not by it's name. </p> <p>Now my question is that the Search Engines dont know how many subjeccts are there and the subject names are not understandable from the id(s). </p> <p>When I tried to use Google Custom Search, and passed on the url of my website it does not go deep to the book level, instead stays on the main url www.mywebsite.com. </p> <p>There are some website that I have seen have URL like this: </p> <blockquote> <p><a href="http://dotnetslackers.com/articles/aspnet/Implementing-Search-in-ASP-NET-with-Google-Custom-Search.aspx" rel="nofollow">http://dotnetslackers.com/articles/aspnet/Implementing-Search-in-ASP-NET-with-Google-Custom-Search.aspx</a></p> </blockquote> <p>Do they really create a seperate aspx page for each and every article ? </p> <p>I maynot be able to make you people understand what I want coz I just started asp.net so please think that it has got to do with SEO. </p> <p>If any clarification is need, please comment and will edit the question. </p> <p><strong>EDIT 1</strong>: Just when I posted this question I noted that it has also created a similar type of page: </p> <pre><code>http://stackoverflow.com/questions/5581873/seo-layout-of-the-website </code></pre> <p>Now, Is that a new folder "seo-layout-of-the-website" !</p> <p><strong>EDIT:2</strong> SO it appears that URL Rewriting is what I need. The example given in one tutorial states that for urls like :<br> <a href="http://www.store.com/products.aspx?category=books" rel="nofollow">http://www.store.com/products.aspx?category=books</a><br> <a href="http://www.store.com/products.aspx?category=DVDs" rel="nofollow">http://www.store.com/products.aspx?category=DVDs</a><br> <a href="http://www.store.com/products.aspx?category=CDs" rel="nofollow">http://www.store.com/products.aspx?category=CDs</a> </p> <p>I can redirect them to <a href="http://www.store.com/products.aspx/Books" rel="nofollow">http://www.store.com/products.aspx/Books</a><br> <a href="http://www.store.com/products.aspx/DVDs" rel="nofollow">http://www.store.com/products.aspx/DVDs</a><br> <a href="http://www.store.com/products.aspx/CDs" rel="nofollow">http://www.store.com/products.aspx/CDs</a> </p> <p>But in my case, I am using Ids, so does that mean that I should use the names (subject.aspx?subjectname=abcd instead of subject.aspx?subjectid=123) ?</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload