如何使用 .htaccess 将文本转换为小写 URL
我想在我的 .htaccess 文件中设置 301 重定向,这样 URL 就可以
http://example.com/Foo
http://example.com/Foo/Bar
http://example.com/Foo/Bar/Blah
更改为
http://example.com/products/foo
http://example.com/products/foo/bar
http://example.com/products/foo/bar/blah
There 有一定数量的“Foo”案例,我可以使用 RewriteRule ^Foo 来定位这些案例,但如何附加“产品”部分?
I want to set up 301 redirects in my .htaccess file so URLs like
http://example.com/Foo
http://example.com/Foo/Bar
http://example.com/Foo/Bar/Blah
change to
http://example.com/products/foo
http://example.com/products/foo/bar
http://example.com/products/foo/bar/blah
There are a discrete number of "Foo" cases which I can target with RewriteRule ^Foo, but how to append the "products" part?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先在 httpd.conf 文件末尾的
部分或添加此行:然后在 .htaccess 文件中添加以下规则:
First add this line in
<VirtualHost>
section OR at the end of your httpd.conf file:Then have these rules in .htaccess file: