.htaccess 重定向错误问题

发布于 2024-11-07 19:39:45 字数 841 浏览 0 评论 0原文

我正在创建一个自定义 .htaccess 重定向文件,但遇到了一个奇怪的问题

这是我的 .htaccess 文件规则

RewriteCond %{HTTP_HOST} !^www\.site\.com$
RewriteRule ^(.*)$ http://www.site.com/$1 [R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ http://www.site.com/$1/ [R=301,L]
RewriteRule ^postreview/ /viewreview.php [NC,PT]    
RewriteRule ^([^/\.]*)/?([^/\.]*)/?([^/\.]*)/?$ /template2.php?slash1=$1&slash2=$2&slash3=$3 [L]

总结一下我想要实现的目标: 1.强制www 2. 将 3 个斜杠区域转换为 tempalte2.php 的变量 3. 将 postreview 发送到 viewreview.php

我想做的大部分工作都有效,但我有一个奇怪的错误。

当我输入“site.com/slash1”时,它会重定向到“www.site.com/site.com/slash1/” 但是,如果我输入“site.com/slash1”,它会重定向到 www.site.com/slash1/

出于某种原因,它还会在所有内容的末尾添加一个“/”。不知道为什么..

有什么想法吗?

I'm creating a custom .htaccess redirect file and I'm running in to a strange problem

Here is my .htaccess file rules

RewriteCond %{HTTP_HOST} !^www\.site\.com$
RewriteRule ^(.*)$ http://www.site.com/$1 [R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ http://www.site.com/$1/ [R=301,L]
RewriteRule ^postreview/ /viewreview.php [NC,PT]    
RewriteRule ^([^/\.]*)/?([^/\.]*)/?([^/\.]*)/?$ /template2.php?slash1=$1&slash2=$2&slash3=$3 [L]

To sum up what I am trying to achieve:
1. Force www
2. Have the 3 slash areas translated to variables for tempalte2.php
3. send postreview to viewreview.php

Most of what I am trying to do is working, but I have a strange bug.

When I enter "site.com/slash1" It redirect to "www.site.com/site.com/slash1/"
But if I enter "site.com/slash1" it redirects to www.site.com/slash1/

For some reason it also adds a "/" to the end of everything. Not sure why..

Any ideas?

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

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

发布评论

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

评论(1

淡水深流 2024-11-14 19:39:45

出于某种原因,它还在所有内容的末尾添加了一个“/”。不知道为什么..

这是由于这个规则

RewriteRule (.*)$ http://www.site.com/$1/ [R=301,L]

将其更改为

RewriteRule (.*)$ http://www.site.com/$1 [R=301,L]

For some reason it also adds a "/" to the end of everything. Not sure why..

It's due to this rule

RewriteRule (.*)$ http://www.site.com/$1/ [R=301,L]

Change it to

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