我使用PHP,MySQL和Apache在我的本地开发了一个应用程序,它有一个包含以下内容的.htaccess文件:
#Setting the default handler. DirectoryIndex home.do#Supporting .do extensions AddType application/x-httpd-php .do #Removing .do file extension if necessary RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.do -f RewriteRule ^(.*)$ $1.do
但我告知我的客户的Web服务器是IIS,我必须使用web.config文件而不是.htaccess.有人可以指导我通过这个吗?