Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有以下字符串的 php 页面。
http://mydomain.com/businesspage.php?profile=Khafihan
所以我正在尝试将此网址转换为以下样式
http://mydomain.com/Khafihan
是否可以使用 php 以及如何使用?
谢谢你的帮助。 问候。
我认为这条.htaccess规则应该做你想做的事:
.htaccess
RewriteEngine On RewriteRule ^([a-z0-9]+)$ /businesspage.php?profile=$1 [L]
您需要将以下行放入.htaccess文件中:
RewriteEngine On RewriteRule /(.*)$ /businesspage.php?profile=$1