去掉斜杠的301跳转如何写
程序员文章站
2022-05-14 13:09:05
...
去掉斜杠的301跳转怎么写?
我用的是PHP虚拟主机,怎么把xxxx.com/abc/ 做301跳转到xxxx.com/abc (其实就是去掉那个斜杠)
现在httpd.ini文件如下:
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
RewriteCond Host: ^www\.xxxx\.com$
RewriteRule (.*) http\://xxxx\.com$1 [I,RP]
------解决方案--------------------
RewriteRule (.*)/ http\://xxxx\.com$1 [I,RP]
RewriteRule (.*) http\://xxxx\.com$1 [I,RP]
我用的是PHP虚拟主机,怎么把xxxx.com/abc/ 做301跳转到xxxx.com/abc (其实就是去掉那个斜杠)
现在httpd.ini文件如下:
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
RewriteCond Host: ^www\.xxxx\.com$
RewriteRule (.*) http\://xxxx\.com$1 [I,RP]
------解决方案--------------------
RewriteRule (.*)/ http\://xxxx\.com$1 [I,RP]
RewriteRule (.*) http\://xxxx\.com$1 [I,RP]
相关文章
相关视频
上一篇: web前端性能优化
下一篇: 服务器与客户端的邮箱地址验证函数