在.html文件中启用PHP的Webmatrix Intellisense

时间:2015-01-30 23:23:55

标签: php html .htaccess webmatrix

有没有办法配置WebMatrix来处理与.php文件相同的.html文件?

我正在编辑一个在.html文件中包含php代码的现有网站。该站点运行正常,因为适当的处理程序声明在.htaccess中。我想使用WebMatrix来编辑这些但是想要智能的intellisense /格式化工作,但当然,如果它们是.php扩展名,WebMatrix只会将它们识别为php。由于生产环境以这种方式运行,因此开发环境是相同的。将所有文件重命名为.php会导致链接断开的风险过高。

1 个答案:

答案 0 :(得分:0)

web.config

文件中尝试此操作
<rewrite>
    <rules>
        <rule name="REWRITE_TO_PHP">
        <match url=".html" />
        <conditions logicalGrouping="MatchAll" />

        <action type="Rewrite" url=".php" />
            </rule>
    </rules>
</rewrite>