用于将任何特定名称重定向到特定页面的htaccess规则

时间:2010-05-24 12:27:13

标签: .htaccess

我正在使用PHP,我需要在url中使用一个名称“Pranav dave”,它应该将我重定向到“myprofile.php”我应该怎么做?..也应该向我显示“Pranav dave”..什么应该是htaccess规则将任何html文件重定向到php文件?

1 个答案:

答案 0 :(得分:1)

你可以这样做:

Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*)$ myprofile.php?profile=$1 [NC]

之后,您可以使用此http://example.com/Pranav dave这样的网址。唯一的问题是,浏览器会重写网址,之后,它看起来像跟随一个http://example.com/Pranav%20dave