简体   繁体   中英

IIS 6 Redirect Directory To index.php?

I developed a PHP web application under Apache and am currently in the process of moving it to a server running IIS 6. Whenever I use this application on an Apache server typing this:

http://mysite.com/subpage/

would internally redirect to:

http://mysite.com/subpage/index.php

Is there a way within IIS 6 to replicate this same behavior? Simply typing a link without index.php give me a director listing denied error. I am not a server administrator, and thus do not have the ability to install an extensions, if they are needed.

Thank you for your time

On IIS 6 (been a while since I used it) I believe you can set the Default Document in either the application pool setting or the application itself.

In the Default Document properties box, there is a listing of file names and extensions you can set it to load automatically. They are in descending order of priority. You'll want to add index.php to the list and move it to the top.

This will make it so any time you go to a "bare" directory, like http://www.example.com or http://www.example.com/subpage/ it will load up index.php.

If you're trying to do it without administrative access, you can add a Default Document section to your web.config file which then gets used. http://www.iis.net/ConfigReference/system.webServer/defaultDocument

As others have answered, if you have direct access to IIS you can set the Default Document.

Without having admin access, you can probably just take advantage of IIS' defaults. Make a page called "Default.htm" (or "index.htm") that redirects to index.php. Since those are already set as default documents it should work.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM