我有一个带有以下字符串的php页面。
http://mydomain.com/businesspage.php?profile=Khafihan
所以我正在尝试将此网址转换为以下格式
http://mydomain.com/Khafihan
是否可以使用php以及如何使用?
感谢您的帮助。
问候。
答案 0 :(得分:2)
我认为这个.htaccess
规则应该做你想要的:
RewriteEngine On
RewriteRule ^([a-z0-9]+)$ /businesspage.php?profile=$1 [L]
答案 1 :(得分:2)
您需要将以下行放入.htaccess
文件中:
RewriteEngine On
RewriteRule /(.*)$ /businesspage.php?profile=$1