htaccess 重定向请帮忙
我之前问过这个问题,答案似乎没有按要求工作——它还需要补充。
为用户提供唯一的 URL,即:exampleurl.com/AQ4ILB9
AQ4ILB9 是推荐代码
- 我希望上面的 URL(或任何推荐 URL)显示 index.php 的内容(htaccess 重定向?)
- 我想要 exampleurl.com 的非 www 和 www 版本,包括 example.com/ index.php 以这种格式重定向到顶层: http://www.exampleurl.com/
- 例如,我希望:
$_GET['_url']
在 index.php 中保存推荐 ID(即:AQ4ILB9
)
我该如何处理上述 3 项内容使用htaccess?
谢谢!
I previously asked this question and the answer did not seem to work as required - it also required an addition.
Users are provided with unique URL's, ie: exampleurl.com/AQ4ILB9
AQ4ILB9 being the referral code
- I would like that URL above (or any referral URL) to display the contents of index.php (htaccess redirect?)
- I would like the non-www and www version of exampleurl.com, including example.com/index.php to be redirected to the top level in this format: http://www.exampleurl.com/
- I would like for example:
$_GET['_url']
to hold the referral id (ie:AQ4ILB9
) in index.php
How can I go about the above 3 all using htaccess?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
第一部分是 301 重定向以添加 www.
第二部分将重写您想要的内容,但不适用于现有文件/目录。
The first part is a 301 redirect to add www.
The second part will rewrite what you want, but not for existing files/directories.
Q) 1 & 3:
问)2:
Q) 1 & 3:
Q) 2:
将 example.com 替换为您的域名并将其放入您的 .htaccess 文件中:
应该可以解决问题!如果
RewriteEngine On
行已经存在,您可能不需要它。Replace example.com with your domain and put this in your .htaccess file:
Should do the trick! You may not need the
RewriteEngine On
line if it's already there.