Thanks for the replies.  I think the problem stems from the fact that the
root folder of served pages (mysite.com/) serves php pages (so that I can
run phpmyadmin etc) and then a subfolder (mysite.com/cashless/) serves
asp.net pages.  I have used RewriteRule (thanks) to patch up the problem
while I look at sorting it out.   I think the best way would just be to set
the handler for the whole site to mono.



> 
> I don't know anything in particular about mod_mono. How do you
> activate it and how do you tell it what files to process? Normal
> Apache AddHandler or SetHandler (placed in a <Directory> section)
> would not have that problem.
> 
> You can always work around problems like this with something like
> <LocationMatch //>
> Order allow,deny
> Deny from all
> </LocationMatch>
> 
> Or
> 
> RewriteEngine On
> RewriteRule (.*)//+(.*) $1/$2 [R]
> 
> But it is certainly better to fix the real problem.
> 
> Joshua.
> 
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: [EMAIL PROTECTED]
>    "   from the digest: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Code-Pages-Downloadable%21-tf4747449.html#a13583472
Sent from the Apache HTTP Server - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to