任何人都请在不同的IIS版本中向我解释applicationhost.config文件位置。请提及每个iis版本中的确切位置。 Apt答案将不胜感激。
答案 0 :(得分:78)
对于"大"自IIS 7以来的IIS版本,位置始终相同:
%windir%\System32\inetsrv\config\applicationHost.config
对于IIS Express,每个用户只有一个,默认位置为:
%USERPROFILE%\Documents\IISExpress\config\applicationhost.config
对所有版本来说都是一样的。
您可以为每个用户运行多个IIS Express实例,您需要指定applicationhost.config
的位置作为/config
的命令行参数iisexpress.exe
答案 1 :(得分:0)
您可以使用
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ admin-panel/index.php [QSA,L]
文件夹下的应用程序主机IIS server 7
文件删除config
或更高版本中的一个或多个站点。
如果您需要更多详细信息,则可以阅读此博客文章 Delete or manage one or more IIS websites through application host configuration file