I couldn't find the answer on my question in the books or the forums.
I'm using Umbraco 4.0.1 on http://sms.mostware.nl. It's still a testsite. The basics seem to be working fine.
I'm implementing a Chat Solution by Who's On. I have used this often on regular ASP.NET sites. I made some user controls for including the "Click here to chat" links. But the main functionality are 40-50 files in a subdirectory /Chat. When trying to access a file in the folder /Chat, I'm given the error:
[code]Page not found
No umbraco document matches the url 'http://sms.mostware.nl/Chat/ChatStart.aspx?domain=sms.mostware.nl'[/code]
So how can I ensure that the URL rewriting is not executed for the Chat folder?
In the web.config file there are two keys that can be set that will allow Umbraco to ignore a single page or an entire directory. These are 'umbracoReservedUrls' and 'umbracoReservedPaths' Most likely you will need to add '/chat' to the list of comma delimited umbracoReservedPaths.
Hope this helps.
SOLVED: How to use a non-umbraco subdirectory
Hi there,
I couldn't find the answer on my question in the books or the forums.
I'm using Umbraco 4.0.1 on http://sms.mostware.nl. It's still a testsite. The basics seem to be working fine.
I'm implementing a Chat Solution by Who's On. I have used this often on regular ASP.NET sites. I made some user controls for including the "Click here to chat" links. But the main functionality are 40-50 files in a subdirectory /Chat. When trying to access a file in the folder /Chat, I'm given the error:
[code]Page not found
No umbraco document matches the url 'http://sms.mostware.nl/Chat/ChatStart.aspx?domain=sms.mostware.nl'[/code]
So how can I ensure that the URL rewriting is not executed for the Chat folder?
Thanks a lot in advance for anyone's help.
Jochem van Grondelle
In the web.config file there are two keys that can be set that will allow Umbraco to ignore a single page or an entire directory. These are 'umbracoReservedUrls' and 'umbracoReservedPaths' Most likely you will need to add '/chat' to the list of comma delimited umbracoReservedPaths.
Hope this helps.
Regards,
Brian
Hey Brian,
Just tested it, and that was the solution. Thanks for your quick reply.
Jochem
is working on a reply...