将文件重定向并重写到子域

发布于 2024-12-16 20:53:40 字数 225 浏览 0 评论 0原文

我们的网站有这个 url

http://mydomain.com/blog.php?id=50

,需要通过 301 重定向到

http://blogs.mydomain.com/blog.php?id=50

必须创建子域或文件夹,或者我们可以直接使用 .htaccess 文件执行此操作吗?

Our site have this url

http://mydomain.com/blog.php?id=50

and need redirect its by 301 to

http://blogs.mydomain.com/blog.php?id=50

must create sub domain or folder or can we do it directly .htaccess file ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

走过海棠暮 2024-12-23 20:53:40

在 .htaccess 文件中尝试以下操作

Options +FollowSymLinks 
RewriteEngine on 
RewriteCond %{HTTP_HOST} ^mydomain\.com [NC] 
RewriteCond %{QUERY_STRING} ^id=([0-9]+)$
RewriteRule ^blog\.php$ http://blogs.mydomain.com/blog.php?id=%1 [L,R=301]

Try the following in your .htaccess file

Options +FollowSymLinks 
RewriteEngine on 
RewriteCond %{HTTP_HOST} ^mydomain\.com [NC] 
RewriteCond %{QUERY_STRING} ^id=([0-9]+)$
RewriteRule ^blog\.php$ http://blogs.mydomain.com/blog.php?id=%1 [L,R=301]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文