.htaccess 脚本使用 302 而不是隐藏重定向来阻止链接中断

发布于 2024-12-17 22:55:54 字数 460 浏览 0 评论 0原文

我有一个已经可以的 htaccess 脚本,旨在将 /about 转发到 /about.php 而不显示它,但我想知道是否有人知道如何修改我的 .htaccess 文件将 /about.html 请求转发到 /about (使用 302 而不是隐藏重定向)

CheckSpelling on
Options -Indexes
Options +FollowSymlinks

DirectoryIndex index.php

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ /index.php?page=$1 [L,QSA]

I have an already ok htaccess script that is designed to forward /about to /about.php without displaying it, but I was wondering if anyone knew how to modify my .htaccess file to to forward requests to /about.html to /about (using 302 rather than a hidden redirect)

CheckSpelling on
Options -Indexes
Options +FollowSymlinks

DirectoryIndex index.php

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ /index.php?page=$1 [L,QSA]

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

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

发布评论

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

评论(1

意中人 2024-12-24 22:55:54

尝试

RewriteCond %{REQUEST_URI} ^/(.+)\.html$ [NC]
RewriteRule . /%1    [R=302,L]

try

RewriteCond %{REQUEST_URI} ^/(.+)\.html$ [NC]
RewriteRule . /%1    [R=302,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文