2015-06-24 85 views
1

我有網址縮短URL htaccess文件

www.example.com/profile?username=abc

,我想重寫爲

www.example.com/abc

我怎樣才能做到這一點使用htaccess的?

+1

的[foo.com/alice對可能重複foo.com/users/alice](http://stackoverflow.com/questions/780311/foo-com -alice-vs-foo-com-users-alice) –

回答

0

的RewriteCond避免無窮的重定向

RewriteEngine On 

RewriteCond %{REQUEST_URI} !^/profile 
RewriteRule ^(.*)$ /profile?username=$1 
+0

此代碼給出內部服務器錯誤。 –

+0

對不起。我認爲,錯字。現在必須工作 – splash58

+0

./ \。完美工作! –