[asp] how do you get (site.com/aboutus) instead of (index.asp?x=about)

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default [asp] how do you get (site.com/aboutus) instead of (index.asp?x=about)

    Hello

    I hope the title of my post was self-explaining.
    But, what i want to do is this:
    Sometimes you see some sort directory structure on website and i can't help
    thinking that it has to be some sort of server-side behaviour.

    is it possible to use some sort of scripting to let it appear you have some
    sort of directory structure instead of using a querystring.... This mostly
    has advantages with S.E.O.

    Best regards
    Dennis Masselink


    Dennis Masselink Guest

  2. Similar Questions and Discussions

    1. Distribute index on a web site
      My client wants to provide a searchable collection of back issues of a newsletter on a web site. I know Acrobat can't search the contents of PDFs...
    2. Can not edit the index.html site
      I designed a Site www.alter-porthhof.de and maked it ready for editing with contribute. Everything works fine, but I seems that I maked one mistake:...
    3. Site Index Generator?
      Can anyone refer me to a program or extension that generates a site index? Ideally a free (or very inexpensive) program -- seems like it should be...
    4. Simple site index
      Ryan Thompson wrote Please let me clarify: I mean I am worried about following all internal links e.g. local files)...
    5. index a site on google
      Hi ! You may want to use a meta tag generator to set up you meta tags, like this one: http://www.multimeta.com/tools/multimetamaker.html ...
  3. #2

    Default Re: [asp] how do you get (site.com/aboutus) instead of(index.asp?x=about)

    how are you getting to index.asp? try
    <%response.redirect('site.com/aboutus/')%> on the page you are getting to
    index.asp from you could also just use javaScript <script> window.location =
    'site.com/aboutus/' </script>

    stevenlmas Guest

  4. #3

    Default Re: [asp] how do you get (site.com/aboutus) instead of (index.asp?x=about)

    I have noticed on a number of SEO sites a reference to a server setting that
    allows the automatic switch of the query-string, although I've never tracked
    it down.

    I have also read that Google has, for the last couple of years, been capable
    of following dynamic links.

    Best - Joe

    "Dennis Masselink" <dema@removehome.nl> wrote in message
    news:cv28kg$21o$1@forums.macromedia.com...
    > Hello
    >
    > I hope the title of my post was self-explaining.
    > But, what i want to do is this:
    > Sometimes you see some sort directory structure on website and i can't
    help
    > thinking that it has to be some sort of server-side behaviour.
    >
    > is it possible to use some sort of scripting to let it appear you have
    some
    > sort of directory structure instead of using a querystring.... This mostly
    > has advantages with S.E.O.
    >
    > Best regards
    > Dennis Masselink
    >
    >

    Joseph Lowery Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139