带有 .htaccess 的动态子域

发布于 2024-10-10 02:55:53 字数 536 浏览 0 评论 0原文

阅读此处的帖子后,我能够使用 .htaccess 文件创建动态子域

RewriteCond %{HTTP_HOST} !^www.sitename.com

RewriteCond %{HTTP_HOST} ([^.]+).sitename.com

RewriteRule ^(.*)$ /sitepath/subdomain.php?str1=%1

为此,我创建了一个带有一个变量的 subdomain.php 文件,即 str1(子域的名称)。现在要实现以下结果

  1. subdomain.sitename.com (已完成)
  2. subdomain.sitename.com/str2/ (在查询字符串中传递第二个变量)
  3. subdomian.sitename.com/str2/str3/ (第二个和第三个变量)
  4. if任何人在地址栏中手动添加一个变量都应该被重定向到 404 错误页面 (subdomain.sitename.com/str2/str3/str4/)

提前致谢。

After reading posts here i was able to create dynamic subdomains with .htaccess file

RewriteCond %{HTTP_HOST} !^www.sitename.com

RewriteCond %{HTTP_HOST} ([^.]+).sitename.com

RewriteRule ^(.*)$ /sitepath/subdomain.php?str1=%1

for this i had created one subdomain.php file with one variable i.e., str1 (name of the subdomain). Now what to achieve following results

  1. subdomain.sitename.com (this is done)
  2. subdomain.sitename.com/str2/ (pass second variable in the query string)
  3. subdomian.sitename.com/str2/str3/ (second and third variable)
  4. if anybody add one more variable in the address bar manually should be redirected to 404 error page (subdomain.sitename.com/str2/str3/str4/)

Thanks in advance.

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

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

发布评论

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

评论(1

最丧也最甜 2024-10-17 02:55:53

您的 RewriteConds 行可能首先仅适用于一个特定的虚拟主机。

It is possible that your RewriteConds lines only apply to one specific vhost in the first place.

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