我正在使用PHP,我需要在url中使用一个名称“Pranav dave”,它应该将我重定向到“myprofile.php”我应该怎么做?..也应该向我显示“Pranav dave”..什么应该是htaccess规则将任何html文件重定向到php文件?
答案 0 :(得分:1)
你可以这样做:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*)$ myprofile.php?profile=$1 [NC]
之后,您可以使用此http://example.com/Pranav dave
这样的网址。唯一的问题是,浏览器会重写网址,之后,它看起来像跟随一个http://example.com/Pranav%20dave