我有網址縮短URL htaccess文件
www.example.com/profile?username=abc
,我想重寫爲
www.example.com/abc
我怎樣才能做到這一點使用htaccess的?
我有網址縮短URL htaccess文件
www.example.com/profile?username=abc
,我想重寫爲
www.example.com/abc
我怎樣才能做到這一點使用htaccess的?
的RewriteCond避免無窮的重定向
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/profile
RewriteRule ^(.*)$ /profile?username=$1
的[foo.com/alice對可能重複foo.com/users/alice](http://stackoverflow.com/questions/780311/foo-com -alice-vs-foo-com-users-alice) –