Suppose I have static client-side processed HTML file accessible at
http://www.example.com/File.html
I would like to append additional data after File.html
. I know I can use ?
but is there any other way so default IIS behaviour would ignore it? Like:
http://www.example.com/File.html/Data
If I try to access this URL I get a 404 from IIS. This on the other hand naturally works:
http://www.example.com/File.html?Data
Question
Is there any way I can use static files on IIS in this way but avoid using ?
or "#"?
Note
I would also like to avoid IIS configuraiton changes so my files can easily be deployed on the cloud where I can't directly control web server.