2013-07-31 169 views
0

我有一個php頁面以下字符串。Php查詢字符串url問題

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

所以我想這個網址轉換成以下風格

http://mydomain.com/Khafihan 

是否有可能用PHP,以及如何?

感謝您的幫助。
此致敬禮。

+1

使用'.htaccess'!閱讀更多... –

+0

你需要重寫網址,搜索mod_rewrite –

+0

[這](http://stackoverflow.com/questions/812571/how-to-create-friendly-url-in-php)問題應該是有幫助的 – 2013-07-31 17:42:06

回答

2

我覺得這.htaccess規則應該做你想要什麼:

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

添加'RewriteEngine On'! –

2

你需要把以下行到您的.htaccess文件:

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

我正在嘗試你的代碼。 – Alex

+0

我剛剛創建了一個.htaccess文件並將其放到我的根文件夾中。但沒有發生。 – Alex

+0

爲什麼它不起作用,你能告訴我嗎? – Alex