.htaccess 脚本使用 302 而不是隐藏重定向来阻止链接中断
我有一个已经可以的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
try