gpt4 book ai didi

php - 如何使用 web.config 重写 IIS Url 重写模块中的网页 url?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:34:28 24 4
gpt4 key购买 nike

我搜索消除 html 文件扩展名的规则(或一组规则)但同时能够重写浏览器 url,如下例所示:

category1_pageid2.html 到 categories_page(对 seo 更友好)

我有一个带有 IIS_UrlRewriteModule 7.1.1952.0 的 IIS 8.5 共享主机环境

非常感谢您的帮助

最佳答案

在 IIS 中,我创建了一条新规则:

enter image description here

然后在下一个对话框中,我添加了一个Patterncategories_page,其中包含{QUERY_STRING}匹配模式c=(\d+)&p=(\d+)(尽管您可能不需要查询字符串 - 根据您的需要自定义)。对于 Action,我添加了 category{C:1}_pageid{C:2}.htmlRewrite URL。如果您不需要查询字符串,则可以取消选中附加查询字符串 的复选框。

enter image description here enter image description here

查看站点的 web.config 文件,我看到以下 XML:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="category-page">
<match url="categories_page" />
<action type="Rewrite" url="category{C:1}_pageid{C:2}.html" />
<conditions>
<add input="{QUERY_STRING}" pattern="c=(\d+)&amp;p=(\d+)" />
</conditions>
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

在我的浏览器中尝试此操作时,当我导航到 localhost/categories_page?c=1&p=2 时,我看到了 category1_pageid2.html 页面:

enter image description here

其他选项包括 rewrite map - 参见 this answer以获得简短的解释。

关于php - 如何使用 web.config 重写 IIS Url 重写模块中的网页 url?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41399809/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com