首先您要看虚拟主机是什么操作系统的
1、linux操作系统,这时候您只需要把伪静态规则写到网站根目录的.htaccess文件中就可以。
2、windows 2003操作系统,这时候您需要在虚拟主机控制面板开启“ISAPI筛选器”,然后把规则写到/others/discuz/httpd.conf文件中
3、windows 2008的操作系统,只需要把规则写到网站根目录的web.config文件就可以。
<system.web><compilation debug="true" targetFramework="4.0" >
<!--此处为添加的代码-->
<buildProviders>
<add extension=".html" type="System.Web.Compilation.PageBuildProvider"/>
</buildProviders>
<!--/此处为添加的代码-->
</compilation>
<customErrors mode="Off"/>
<httpModules>
<add type="DTcms.Web.UI.HttpModule, DTcms.Web.UI" name="HttpModule" />
</httpModules>
<httpHandlers>
<!--此处为path路径可去掉前面部分,直接*.html-->
<add verb="*" path="templates/当前模版文件夹名称/*.html" type="System.Web.UI.PageHandlerFactory"/>
</httpHandlers>
<!-- 文件上传大小KB-->
<httpRuntime requestValidationMode="2.0" maxRequestLength="2097151" executionTimeout="36000" />
</system.web>
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)