web config - Different Default Document Type in Subfolder on IIS 6 -


i've never worked on iis server php before, question can set default document type subfolder in web.config, have in mind (its bbpress forum):

<location path="forum"> <system.webserver>     <defaultdocument>         <files>             <add value="index.php" />         </files>     </defaultdocument> </system.webserver> </location> 

thanks , virtual beer person answers :d

if you're using iis7, configuration suggest indeed change default document subfolder forum index.php.

if iis 6 won't work non-administrative user. iis 6 stores these settings in metabase , can edited using:

  • iis management console
  • programmatically, modifying application requires administrator rights
  • direct metabase editing

the <system.webserver> xml web.config settings applicable iis 7 , above, iis 6 ignore these.


Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -