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

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

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