Godaddy免费10G空间WIN主机伪静态方法
[i=s] 本帖最后由 tj1266 于 2010-7-9 08:20 编辑 [/i]看到有朋友要了解Godaddy免费10G空间WIN主机伪静态方法,现分享一下我的伪静态方法希望有需要的朋友用得上,平时我们所见到的WIN主机伪静态大部分都是直接在根目录添加httpd.ini文件或主机商添加的,但Godaddy的WIN主机是不能这样做的,所以很多人都以为它不支持伪静态,其实Godaddy的所有空间都是完美支持伪静态的,设置方法很简单,相信很多朋友都会,只不过没想起这种方法,就是添加一个web.config文件保存到网站所在的目录,详细方法如下:
godaddy空间windows的全能的,php支持很是完美,下面就以在godaddy的windows主机下安装discuz7.2伪静态的来说说,
效果演示:[url=http://ask.yl228.com/]http://ask.yl228.com[/url]
方法如下:
[code]<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 17">
<match url="^archiver/((fid|tid)-[\w\-]+\.html)$" ignoreCase="false" />
<action type="Rewrite" url="archiver/index.php?{R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 18">
<match url="^forum-([0-9]+)-([0-9]+)\.html$" ignoreCase="false" />
<action type="Rewrite" url="forumdisplay.php?fid={R:1}&page={R:2}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 19">
<match url="^thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$" ignoreCase="false" />
<action type="Rewrite" url="viewthread.php?tid={R:1}&extra=page\%3D{R:3}&page={R:2}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 20">
<match url="^space-(username|uid)-(.+)\.html$" ignoreCase="false" />
<action type="Rewrite" url="space.php?{R:1}={R:2}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 21">
<match url="^tag-(.+)\.html$" ignoreCase="false" />
<action type="Rewrite" url="tag.php?name={R:1}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
<httpErrors errorMode="Detailed" />
<asp scriptErrorSentToBrowser="true" />
</system.webServer>
<system.web>
<customErrors mode="Off" />
<globalization requestEncoding="utf-8" responseEncoding="utf-8" fileEncoding="utf-8" />
</system.web>
</configuration>
[/code]
把上面的的内容保存成web.config 并传到bbs目录下,同时也可以根据自己的需要进行添加修改,其它CMS的设置方法也是大同小异,注意是bbs目录下哦!
本文章转自站长藏经阁([url=http://www.qq2068.com]http://www.qq2068.com[/url]),详细出处参考:[url=http://www.qq2068.com/a/CMSshezhi/Discuzjiaocheng/2010/0709/6492.html]http://www.qq2068.com/a/CMSshezhi/Discuzjiaocheng/2010/0709/6492.html[/url] 哦,,原来 他是设置 web.config 真是太感谢了。
我还以为只有在服务器上添加伪静态规则才可以。。
感谢,加分,过下试试去。
过下,把原来咱发过的贴中说 GD的WIN系统不支持伪静态的都改过来。 请问楼主.....这个代码并不能通用哦....本人不才 不知道用哦..
我用的博客程序 这么使用 一上传 web.config就出现500错误
页:
[1]