類我會承擔,但似乎無法在這裏找到任何答案,這將幫助我。在網址顯示的用戶名......簡單www.example.com/JoeMason
基本上而不是顯示
www.example.com/profile.php
我想要顯示被登錄的人的用戶名。
www.example.com/JoeMason
有沒有簡單的方法來實現這一目標?#
感謝
類我會承擔,但似乎無法在這裏找到任何答案,這將幫助我。在網址顯示的用戶名......簡單www.example.com/JoeMason
基本上而不是顯示
www.example.com/profile.php
我想要顯示被登錄的人的用戶名。
www.example.com/JoeMason
有沒有簡單的方法來實現這一目標?#
感謝
是的,你可以使用國防部重寫改寫www.example.com/JoeMason到www.example.com/profile.php?name=JoeMason
嘗試增加這.htaccess文件:
RewriteEngine On
RewriteRule ^/(.*)/$ http://www.example.com/profile.php?name=$1 [L]
那麼,這是否工作? – Jeroen
你可以使用一個重寫規則O此,從
www.example.com/profile.php?user=JoeMason改變
到
www.example.com/JoeMason
看到的.htaccess或nginx的的conf
如果使用Apache Web服務器[mod_rewrite的(http://httpd.apache.org/docs/current/mod重寫規則/mod_rewrite.html)可能會對你有所幫助。 – VisioN
我認爲類似http://stackoverflow.com/questions/5880410/how-to-display-a-user-name-in-url – Vik
你需要實現友好的URL。 選中此[文章] [1] [1]:http://stackoverflow.com/questions/812571/how-to-create-friendly-url-in-php –