.htaccess 子域和/

发布于 2024-08-16 07:22:55 字数 182 浏览 6 评论 0原文

如何将 URL:

用户名.domain.com/文件

重写为

domain.com/q.php?user= 用户名&url =文件

谢谢。

how do I rewrite the URL:

username.domain.com/file

to

domain.com/q.php?user=username&url=file

Thanks.

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

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

发布评论

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

评论(2

最偏执的依靠 2024-08-23 07:22:55

试试这个规则:

RewriteCond %{HTTP_HOST} ^([^./]+)\.example\.com$
RewriteCond %1 !=www
RewriteRule .+ http://example.com/q.php?username=%1&file=$0 [L,QSA]

Try this rule:

RewriteCond %{HTTP_HOST} ^([^./]+)\.example\.com$
RewriteCond %1 !=www
RewriteRule .+ http://example.com/q.php?username=%1&file=$0 [L,QSA]
累赘 2024-08-23 07:22:55

这是解决方案:

  • 动态(无论主机是什么,它应该工作)
  • 易于修改(=只需通过真实文件更改 RewriteRule 的第一个“文件”,它应该工作):

告诉我它是否工作:

RewriteCond %{HTTP_HOST} (([a-zA-Z0-9\-]+)\.)([a-zA-Z0-9\-]+)\.+(fr|com|net|org|eu)$
RewriteRule ^/(file)$ http://%3.%4/q.php?user=%2&url=$1

Here's the solution that is:

  • dynamic (whatever the host is, it should work)
  • easy to modify (= just change the first 'file' of the RewriteRule by the real file and it should work):

Tell me if it works:

RewriteCond %{HTTP_HOST} (([a-zA-Z0-9\-]+)\.)([a-zA-Z0-9\-]+)\.+(fr|com|net|org|eu)$
RewriteRule ^/(file)$ http://%3.%4/q.php?user=%2&url=$1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文