使用 php 或 apache 将域重定向到子目录

发布于 2024-10-20 20:03:52 字数 549 浏览 3 评论 0原文

<IfModule mod_rewrite.c>
    RewriteCond %{HTTP_HOST} ^(www.)?url.com$
    RewriteRule ^(/)?$ www-static [L]
</IfModule>

好的,上面的 apache 配置运行良好。它确实

url.com to url.com/www-static = www.myurl.com/www-static

1。我们可以像在 apache 中那样做吗?

url.com = www.myurl.com/www-static without adding the /www-static on the url ?

2.在 php 中怎么样?还是在 apache 上更好? (假设我们有数千个域名重定向到我们从数据库中获取的特定文件夹)

感谢您查看

Adam Ramadhan

<IfModule mod_rewrite.c>
    RewriteCond %{HTTP_HOST} ^(www.)?url.com$
    RewriteRule ^(/)?$ www-static [L]
</IfModule>

ok the apache config above works well. it does

url.com to url.com/www-static = www.myurl.com/www-static

1. can we do something like in apache ?

url.com = www.myurl.com/www-static without adding the /www-static on the url ?

2. how about in php ? or its better on apache? ( lets say we have thousand of domain redirecting to a spesific folder that we fetch from the database )

Thanks for looking in

Adam Ramadhan

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

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

发布评论

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

评论(1

遇见了你 2024-10-27 20:03:52

使用引导程序和 MVC 模式。通过这种方式,您可以检测引用 URL 并获取您想要显示的内容...这就是所有这些搜索引擎伪装器脚本的工作方式(听起来您正在尝试这样做)。

Use a bootstrap and the MVC pattern. This way you can detect the referring URL and fetch the content that you want to show... it's how all of those search engine cloaker scripts work (which it sounds like you are trying to do).

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