使用 php 或 apache 将域重定向到子目录
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用引导程序和 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).