ISAPI 重写语法有帮助吗?

发布于 2024-08-04 10:14:50 字数 420 浏览 4 评论 0原文

我有以下问题

RewriteMap mapfile txt:D:\mysite\urls.txt
RewriteRule ^([^?/]+)\.htm  /vehicle.aspx?e=${mapfile:$1} [QSA]
RewriteRule ^(.*)\.htm $1\.aspx 

现在我的问题是,我想让 /vehicles.aspx 页面的 url 看起来像这样(我正在从文件中读取)

/my-chevrolet-camaro.htm

哪个工作正常 - 我现在遇到的问题是如果有任何真实的浏览根目录中的页面时会抛出找不到页面?例如

default.htm

会抛出 404!我需要什么语法来检查列表然后照常进行?

I have the following

RewriteMap mapfile txt:D:\mysite\urls.txt
RewriteRule ^([^?/]+)\.htm  /vehicle.aspx?e=${mapfile:$1} [QSA]
RewriteRule ^(.*)\.htm $1\.aspx 

Now my problem is, I want to make the url's look like this for the /vehicles.aspx page (Which I am reading from a file)

/my-chevrolet-camaro.htm

Which is working fine - The problem I have now is if any of the REAL pages in the root are browsed to it throws a page not found?? For example

default.htm

Would throw a 404!! What syntax do I need to say check the list and then just carry on as normal?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云醉月微眠 2024-08-11 10:14:50

您的最后一条规则,即,

RewriteRule ^(.*)\.htm $1\.aspx

将 *.htm 映射到 *.aspx。

这意味着default.htm 将被重写为default.aspx。如果您没有 default.aspx,则会抛出 404 错误。这有帮助吗?

Your last rule, i.e.,

RewriteRule ^(.*)\.htm $1\.aspx

maps *.htm to *.aspx.

This would mean that default.htm would be rewritten to default.aspx. If you don't have a default.aspx, then a 404 would be thrown. Does that help?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文