htaccess 重定向 WordPress 文件夹更改

发布于 2024-10-30 20:07:25 字数 236 浏览 1 评论 0原文

我目前的网址为 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 技术交流群。

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

发布评论

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

评论(2

樱花细雨 2024-11-06 20:07:26

将此规则添加到您的 .htaccess 文件中:

RewriteEngine on

RewriteRule wordpress(.*)$ /w$1

如果不起作用..请告诉我...:)

Add this rule to your .htaccess file:

RewriteEngine on

RewriteRule wordpress(.*)$ /w$1

If doesnt work.. let me know... :)

浊酒尽余欢 2024-11-06 20:07:25
RedirectMatch 301 ^wordpress(.*)$ /directory/path/to/w/$1

上面的行应该匹配传入您域的每个以“wordress”开头的请求,并将其重定向到 /w/。 “301”告诉浏览器(和搜索引擎)页面已永久移动。 $1 的存在是为了重定向 /wordpress/ 之后的任何内容并将其附加到重定向的 URL 中。因此,如果我访问 http://example.com/wordpress/this-post/ 我会重定向到 http://example.com/w/this-post

RedirectMatch 301 ^wordpress(.*)$ /directory/path/to/w/$1

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文