does url rewriting use isapi

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

    does url rewriting use isapi

    .... and if so how (using basic asp, not .net)?

    thanks

    Mark
    www.iosilver - Silver Jewellery

  • Mike Brind

    #2
    Re: does url rewriting use isapi


    trooperbill wrote:
    ... and if so how (using basic asp, not .net)?
    >
    thanks
    >


    --
    Mike Brind

    Comment

    • Anthony Jones

      #3
      Re: does url rewriting use isapi


      "trooperbil l" <markrush@gmail .comwrote in message
      news:1154422955 .980669.18530@s 13g2000cwa.goog legroups.com...
      ... and if so how (using basic asp, not .net)?
      >
      Yes URL rewriting uses ISAPI. You need to create a C++ ISAPI filter project
      and write code in the OnUrlMap in the implementation of CHttpFilter. Have
      fun ;)
      thanks
      >
      Mark
      www.iosilver - Silver Jewellery
      >

      Comment

      • mark r

        #4
        Re: does url rewriting use isapi


        Anthony Jones wrote:
        "trooperbil l" <markrush@gmail .comwrote in message
        news:1154422955 .980669.18530@s 13g2000cwa.goog legroups.com...
        ... and if so how (using basic asp, not .net)?
        >
        Yes URL rewriting uses ISAPI. You need to create a C++ ISAPI filter project
        and write code in the OnUrlMap in the implementation of CHttpFilter. Have
        fun ;)
        >
        thanks

        Mark
        www.iosilver - Silver Jewellery
        anyone know a method that will work on shared hosting?

        Comment

        • Kyle Peterson

          #5
          Re: does url rewriting use isapi

          nope


          "mark r" <markrush@gmail .comwrote in message
          news:1154510496 .116355.26580@7 5g2000cwc.googl egroups.com...
          >
          Anthony Jones wrote:
          >"trooperbill " <markrush@gmail .comwrote in message
          >news:115442295 5.980669.18530@ s13g2000cwa.goo glegroups.com.. .
          ... and if so how (using basic asp, not .net)?
          >
          >>
          >Yes URL rewriting uses ISAPI. You need to create a C++ ISAPI filter
          >project
          >and write code in the OnUrlMap in the implementation of CHttpFilter.
          >Have
          >fun ;)
          >>
          thanks
          >
          Mark
          www.iosilver - Silver Jewellery
          >
          >
          anyone know a method that will work on shared hosting?
          >

          Comment

          • Justin Piper

            #6
            Re: does url rewriting use isapi

            On Wed, 02 Aug 2006 04:21:36 -0500, mark r <markrush@gmail .comwrote:
            Anthony Jones wrote:
            >"trooperbill " <markrush@gmail .comwrote in message
            >news:115442295 5.980669.18530@ s13g2000cwa.goo glegroups.com.. .
            ... and if so how (using basic asp, not .net)?
            >
            >>
            >Yes URL rewriting uses ISAPI. You need to create a C++ ISAPI filter
            >project
            >and write code in the OnUrlMap in the implementation of CHttpFilter.
            >Have
            >fun ;)
            >
            anyone know a method that will work on shared hosting?
            If you can create virtual directories, you may be able to use a wildcard
            redirect. Configure the virtual directory so that it redirects to the
            exact URL you enter, and use a URL such as this:

            *;*;/index.asp?url=$ V&$P

            The first *; tells IIS that this is a wildcard redirect. The second
            matches any URL, and $V and $P embed the file and query portions of the
            matched URL, respectively.

            --
            Justin Piper
            Bizco Technologies
            We help businesses optimize efficiency with information technology, audio-visual, and mobility solutions through predictable pricing and dependable support.

            Comment

            • travislspencer@gmail.com

              #7
              Re: does url rewriting use isapi

              mark r wrote:
              >
              anyone know a method that will work on shared hosting?
              Get a new hosting company that is running Linux and use mod_rewrite.

              --

              Regards,

              Travis Spencer

              Comment

              Working...