does url rewriting use isapi
Collapse
This topic is closed.
X
X
-
trooperbillTags: None
-
Anthony Jones
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)?
>
and write code in the OnUrlMap in the implementation of CHttpFilter. Have
fun ;)
Comment
-
mark r
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 ;)
>
Comment
-
Kyle Peterson
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 ;)
>>
anyone know a method that will work on shared hosting?
>
Comment
-
Justin Piper
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?
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
Re: does url rewriting use isapi
mark r wrote:>
anyone know a method that will work on shared hosting?
--
Regards,
Travis Spencer
Comment
Comment