我想重写 URL,为此我有以下代码。
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?uname=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ index.php?uname=$1
现在,当我写像www.mywebsite.com/username这样的网址时,它可以正常工作并且没有给出任何错误。
现在,即使我在 hit go 中写www.mywebsite.com/index.php?uname=username ,我如何才能获得这个 URL。
当我在 URL 中写入 www.mywebsite.com/index.php?uname=username 时,我想将www.mywebsite.com/index.php?uname=username更改为www.mywebsite.com/username 。
作为 WWW 前缀的重写工作,即使用户写 www.mywebsite.com/index.php?uname=username ,我也希望以相同的方式将我的 URL 更改为www.mywebsite.com/username。