-2

我在笔记本电脑上安装了 XAMPP,并激活并运行了 Mod Rewrite。我的网站上有一个页面如下:

http://localhost/TripMan/staff/viewstudent.php?id=2

我想让它在人们访问上面的 URL 时显示为:

http://localhost/TripMan/staff/studentinfo/2

我将如何编写重写规则来做到这一点?我以前从未使用过此功能。

谢谢

4

1 回答 1

1

您需要使用.htaccess这样的文件:

# Turn on the rewrite engine
RewriteEngine On

# Set student rewrite
RewriteRule ^TripMan/staff/studentinfo/([0-9]*)/?$ TripMan/staff/viewstudent.php?id=$2 [NC,QSA]
于 2013-01-16T13:02:41.250 回答