URL Rewriting

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Chris

    URL Rewriting

    I want to rewrite URL's from asp type ones with querystrings to more search
    engine friendly ones. I was looking at two options:

    isapirewrite or a bit of a hack which replaces the 404 page with a custom,
    which examines the url and then does a server transfer to the querystring
    page.

    The hack works quite well with one problem, only the 404 page is written to
    the IIS log. Does Isapi rewrite have the same problem.

    Can anyone recommend any pointers to combining URL rewriting and web
    statistics.


  • Peter

    #2
    Re: URL Rewriting

    "Chris" <nospam@btinter net.com> wrote in
    news:udYrPx7mGH A.2252@TK2MSFTN GP04.phx.gbl:
    [color=blue]
    > I want to rewrite URL's from asp type ones with querystrings to more
    > search engine friendly ones. I was looking at two options:
    >
    > isapirewrite or a bit of a hack which replaces the 404 page with a
    > custom, which examines the url and then does a server transfer to the
    > querystring page.
    >
    > The hack works quite well with one problem, only the 404 page is
    > written to the IIS log. Does Isapi rewrite have the same problem.
    >
    > Can anyone recommend any pointers to combining URL rewriting and web
    > statistics.
    >
    >[/color]

    From experience, the ISAPI filter will only log the resultant URL.

    If you must have two log entries, try a 301 or 302 redirect from your
    custom 404 page.

    Comment

    Working...