如何隐藏我的页面扩展名,例如
mysite.com/index.asp
如何取消扩展名.asp
以及如何隐藏URL中的表字段名称。例如,我正在显示2的记录的详细信息。所以链接将是
mysite.com/details?record_id=2
如何取消record_1d=2
使其成为
mysite.com/details
我正在使用asp classic。
感谢
答案 0 :(得分:0)
你想要这个:
http://www.iis.net/downloads/microsoft/url-rewrite
您的规则如下:
<rewrite>
<rules>
<rule name="RewriteASP">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="{R:1}.asp" />
</rule>
</rules>
</rewrite>
据我所知,如果不重新编写代码以通过HTTP帖子传递数据,则无法重写查询字符串。