php查询字符串url问题

时间:2013-07-31 17:39:04

标签: php html

我有一个带有以下字符串的php页面。

http://mydomain.com/businesspage.php?profile=Khafihan

所以我正在尝试将此网址转换为以下格式

http://mydomain.com/Khafihan

是否可以使用php以及如何使用?

感谢您的帮助。
问候。

2 个答案:

答案 0 :(得分:2)

我认为这个.htaccess规则应该做你想要的:

RewriteEngine On
RewriteRule ^([a-z0-9]+)$ /businesspage.php?profile=$1 [L]

答案 1 :(得分:2)

您需要将以下行放入.htaccess文件中:

RewriteEngine On 
RewriteRule /(.*)$ /businesspage.php?profile=$1