1
當我嘗試這樣做htaccess的:htaccess的清潔網址的個人資料頁
RewriteEngine on
RewriteRule ^([^\.]+)$ $1.php [NC,L]
ErrorDocument 404 /includes/errors/404.php
ErrorDocument 403 /includes/errors/403.php
RewriteRule ^profile/([^/]+)$ /profile?user=$1
它的工作原理,但我讀的名字是錯的。 當我做例如http://localhost/profile/Andre我得到Andre.php作爲用戶,而不是安德烈。 有人知道如何解決這個問題嗎?