douyi8315 2013-11-26 08:19
浏览 151
已采纳

如何使用GET参数将HTTP请求重定向到静态文件

I've a Page

example.com/u/_USERNAME_

and i want to redirect the request to

example.com/u/profile.php?u=_USERNAME_

I've tried a .htaccess (in the /u/ folder) file with the following content:

RewriteEngine on
RewriteRule (.*)$ profile.php?u=$1

It redirects the request BUT the $_GET['u'] Variable contains profile.php

Where's the Problem?


I've solved the Problem:

The file profile.php was in the /u/ Folder. So the Rule redirects to the own file and the GET Parameter get lost. I've put the profile.php in the rootfolder example.com/ and it work's!

  • 写回答

1条回答 默认 最新

  • dsjfrkvn818747 2013-11-26 08:25
    关注

    The apache rewrite rules are regular expressions, and the one you wrote matches a whole string. Write a rule that matches stuff after /u/ thus so:

    RewriteRule ^u/([^/]*)$ /u/profile.php?u=$1 [L]
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!