.htaccess 子域通配符

发布于 2024-11-04 11:14:49 字数 454 浏览 0 评论 0原文

我一直在寻找在 .htaccess 中执行 mod_rewrite 的许多不同方法,以创建转发到特定路径的通配符子域,同时保留目录和页面的尾随 url。似乎没有什么能解决问题。我只是不太擅长正则表达式,还没有弄清楚这一点。

我的通配符需要制作:

http://username.domain.org/project1/hello.html

与:

http://domain.org/domains/username/project1/hello .html

有什么想法吗?

I've been looking thru many, many different ways of doing a mod_rewrite in my .htaccess for creating wildcard subdomains that forward to a specific path, while preserving the trailing url for directory and page. Nothing seems to do the trick. I'm just not that good at regular expressions yet to figure this out.

My wildcard needs to make:

http://username.domain.org/project1/hello.html

the same as:

http://domain.org/domains/username/project1/hello.html

Any ideas?

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

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

发布评论

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

评论(1

淡看悲欢离合 2024-11-11 11:14:49

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

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteCond %{HTTP_HOST} ^([^.]+)\.domain\.org$ [NC]
RewriteRule ^(.*)$ http://domain.org/%1/$1 [R=301,L]

Try this in your .htaccess file:

Options +FollowSymlinks -MultiViews
RewriteEngine on

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