htaccess 重定向 WordPress 文件夹更改
我目前的网址为 http://example.com/wordpres/ 我要将其更改为 http://example.com/w/ 目前,我从网络上已有的链接获得了大量流量。如何将所有发送到 /wordpress 的内容重定向到 /w ?
I currently have a url of http://example.com/wordpres/
I'm going to change this to http://example.com/w/
I currently get a lot of traffic from links already out on the web. How can I redirect everything that went to /wordpress to /w ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将此规则添加到您的
.htaccess
文件中:如果不起作用..请告诉我...:)
Add this rule to your
.htaccess
file:If doesnt work.. let me know... :)
上面的行应该匹配传入您域的每个以“wordress”开头的请求,并将其重定向到 /w/。 “301”告诉浏览器(和搜索引擎)页面已永久移动。 $1 的存在是为了重定向 /wordpress/ 之后的任何内容并将其附加到重定向的 URL 中。因此,如果我访问 http://example.com/wordpress/this-post/ 我会重定向到 http://example.com/w/this-post。
The above line should match every request coming to your domain with 'wordress' at the start and redirect it to /w/. The '301' tells the browser (and search engines) that the page(s) have moved permenantly. The $1 exists to redirect anything after /wordpress/ and append it to the redirected URL. So if I visit http://example.com/wordpress/this-post/ I would get redirected to http://example.com/w/this-post.