使用htaccess将子域文件重写到文件夹

发布于 2024-11-01 10:40:18 字数 495 浏览 1 评论 0原文

我需要将子域上的文件重写为存储在具有子域名称的文件夹中的文件。仅应重写以 sitemap 开头的文件。因此,如果请求如下所示:

http://demo.domain.com/sitemap.xml
http://demo.domain.com/sitemap_more.xml
http://test.domain.com/sitemap.xml
http://test.domain.com/sitemap_alpha.xml

这些应该重写到文件:

/content/sitemaps/demo/sitemap.xml
/content/sitemaps/demo/sitemap_more.xml
/content/sitemaps/test/sitemap.xml
/content/sitemaps/test/sitemap_alpha.xml

因此,子域名用作重写路径中的文件夹。这应该是重写而不是重定向。此外,最好有适用于任何域的规则,而无需每次都更改域名。

I need to rewrite a files on subdomain to files stored in the folder with name of the subdomain. Only files that start with sitemap should be rewritten. So, if the requests look like this:

http://demo.domain.com/sitemap.xml
http://demo.domain.com/sitemap_more.xml
http://test.domain.com/sitemap.xml
http://test.domain.com/sitemap_alpha.xml

These should rewrite to files:

/content/sitemaps/demo/sitemap.xml
/content/sitemaps/demo/sitemap_more.xml
/content/sitemaps/test/sitemap.xml
/content/sitemaps/test/sitemap_alpha.xml

So, subdomain name is used as a folder in the rewrite-to-path. This should be rewriting NOT redirecting. Also, it would be good to have rules that will work with any domain without need to change domain name everytime.

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

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

发布评论

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

评论(1

浅语花开 2024-11-08 10:40:18

您可以将子域与条件匹配,然后使用规则重写它:

RewriteCond %{HTTP_HOST} ^([^.]+)\.domain\.com
RewriteRule ^(.*)$ http://domain.com/content/sitemaps/%1/$1 [L]

也许您想在 .xml 上添加过滤器

添加:

RewriteCond %{REQUEST_FILENAME} \.xml

编辑

对于以 sitemap 开头的文件:

RewriteCond %{REQUEST_FILENAME} sitemap.*\..+$

这将匹配以站点地图结尾的任何字符串。并结束。 =>这是一个文件名,而不是目录的内部匹配。

You can match the subdomain with a condition, then rewrite it with the rule :

RewriteCond %{HTTP_HOST} ^([^.]+)\.domain\.com
RewriteRule ^(.*)$ http://domain.com/content/sitemaps/%1/$1 [L]

Maybe you want to add a filter on .xml

Add :

RewriteCond %{REQUEST_FILENAME} \.xml

Edit

For file beginning with sitemap :

RewriteCond %{REQUEST_FILENAME} sitemap.*\..+$

This will match any string that finish with sitemap. and end. => this is a filename not an inner match of directory.

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