Been searching for an answer to this but read some conflicting reports.
I have a asp.net website with forms authentication setup and I'm adding some php pages to a subfolder within the site. I want these pages to follow the same authentication as the rest of the site, ie be bounced to my asp.net login form if not logged in.
Currently if I access a file http://localhost/test/test.php
it is serving it even if I'm not logged in. However if I just browse to the folder http://localhost/test/
it does bounce me to login page. Guess I need to force these PHP pages through the asp pipeline but is this possible in classic mode / iis6?
http://localhost/test/
in the browser auto redirects you? – itsols yesterdayhttp://localhost/test/
is redirecting me to my login page. The reason its PHP is I'm integrating a wordpress blog – Omiron yesterday