如何根据子域调度/重定向到适当的目录
我正在网络主机上部署一个简单的网站,但遇到一些问题。我在这个领域很新。
我的域“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 /public_html/ 文件夹中的 .htaccess 文件来执行此操作
You can do this with a .htaccess file in your /public_html/ folder