Forum Moderators: open
Over on Search Engine Promotion - What are they using? [webmasterworld.com], someone asked about how a certain site was manging to use dynamic content but not show any .asp file extensions. Brett replied:
SSI. Not hard to do if you have control of the server config.
Is there an explanation somewhere of how to do this, and what kind of control you need over the server config? It sounds perfect for what I need to do on my site.
Thanks, Robin
Please understand, we're not ignoring you.
What's really funny is that I thought "Oh I can point him to some great links I got in my sticky mail this morning from that new user..."
and then realized you were the one who sent me the links! *LOL!*
-G
ex :
[yoursite.com...]
becomes
[yoursite.com...]
but this directory does not exist... then it will be a 404 error...
just configure your website with :
404.asp as defaut 404 error page
in 404.asp
<%
if instr(request.querystring,"idx")>0 then
'catch id
var1=split(request.querystring,"idx")
var2=split(var1(1),"/")
id=var2(0)
'now you can use your id to build your page
else
'your defaut 404 error
end if
%>
quite basic but very efficient... a good beginning to build a doorway... ;)