如何根据子域调度/重定向到适当的目录

发布于 2024-11-03 22:46:33 字数 681 浏览 0 评论 0原文

我正在网络主机上部署一个简单的网站,但遇到一些问题。我在这个领域很新。

我的域“example.com”的默认目录是服务器上的public_html/example.com。 (这意味着 example.com/test.php 默认情况下将访问 public_html/example.com/test.php)。但是如何将(config) example.com 的默认目录设置为子目录,例如: public_html/example.com/public/www ?

更重要的是: 我有 example.com、yy.example.com、zz.example.com,最初都指向 public_html/example.com。我想要它们:

example.com 指向 public_html/example.com/public/www

yy.example.com 指向 public_html /example.com/public/yy

zz.example.com 指向 public_html/example.com/public/zz

我怎样才能实现这一目标?我应该使用哪种 .htacess 或任何其他适当的方法?

I am deploying a simple website at a web host, but encounter some issues. I am quite new in this area.

My domain "example.com" 's default directory is public_html/example.com at server. (which means example.com/test.php will access public_html/example.com/test.php by default). But how can I set(config) example.com 's default directory to an sub-directory like: public_html/example.com/public/www ?

What's more:
I have example.com, yy.example.com, zz.example.com, all point to public_html/example.com originally. I want them:

example.com points to public_html/example.com/public/www

yy.example.com points to public_html/example.com/public/yy

zz.example.com points to public_html/example.com/public/zz

How can I achieve this? What kind of .htacess or any other appropriate ways should I use?

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

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

发布评论

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

评论(1

混浊又暗下来 2024-11-10 22:46:33

您可以使用 /public_html/ 文件夹中的 .htaccess 文件来执行此操作

RewriteEngine on
RewriteBase /

RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
RewriteRule (.*) /public/www/$1 [L,NC]  

RewriteCond %{HTTP_HOST} ^yy\.example\.com$ [NC]
RewriteRule (.*) /public/yy/$1 [L,NC]  

RewriteCond %{HTTP_HOST} ^zz\.example\.com$ [NC]
RewriteRule (.*) /public/zz/$1 [L,NC]  

You can do this with a .htaccess file in your /public_html/ folder

RewriteEngine on
RewriteBase /

RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
RewriteRule (.*) /public/www/$1 [L,NC]  

RewriteCond %{HTTP_HOST} ^yy\.example\.com$ [NC]
RewriteRule (.*) /public/yy/$1 [L,NC]  

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