.htaccess 重定向错误问题
我正在创建一个自定义 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是由于这个规则
将其更改为
It's due to this rule
Change it to