无法使用 .htaccess 添加斜杠

发布于 2024-07-21 10:51:36 字数 527 浏览 6 评论 0原文

我有一个网站,上面有一些 html 文件。 其中之一是 contact.html。 这是我的 .htaccess,我遇到了问题,我可以使用 site.com/contact 来寻址该页面,但不能使用 site.com/contact/。 (注意结尾斜杠。)解决办法是什么?

RewriteEngine On

# If the requested URI does not contain a period in the final path-part
RewriteCond %{REQUEST_URI} !(\.[^./]+)$
# and if it does not exist as a directory
RewriteCond %{REQUEST_fileNAME} !-d
# and if it does not exist as a file
RewriteCond %{REQUEST_fileNAME} !-f
# then add .html to get the actual filename
rewriterule (.*) /$1.html [L]

I have a site with some html files on it. One of them is contact.html. This is my .htaccess, and I'm having problems where I can address the page with site.com/contact, but not site.com/contact/. (Note ending slash.) What's the fix?

RewriteEngine On

# If the requested URI does not contain a period in the final path-part
RewriteCond %{REQUEST_URI} !(\.[^./]+)$
# and if it does not exist as a directory
RewriteCond %{REQUEST_fileNAME} !-d
# and if it does not exist as a file
RewriteCond %{REQUEST_fileNAME} !-f
# then add .html to get the actual filename
rewriterule (.*) /$1.html [L]

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

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

发布评论

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

评论(2

站稳脚跟 2024-07-28 10:51:36

而不是:

rewriterule (.*) /$1.html [L]

尝试:

RewriteRule ^([^/]*)/?$ /$1.html [L]

Instead of:

rewriterule (.*) /$1.html [L]

Try:

RewriteRule ^([^/]*)/?$ /$1.html [L]
情深缘浅 2024-07-28 10:51:36
RewriteRule ^([^/]*)/?$ $1.php [L]

就我而言,我将删除 $1 之前的斜杠,这样就可以了! 我很高兴从您的评论中学到很多东西。

RewriteRule ^([^/]*)/?$ $1.php [L]

In my case, I will remove slash before $1 and it works! I'm appreciate to learn a great deal from your comment.

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