2012-11-23 88 views
0

在我的網站上,我的用戶點擊個人資料,鏈接顯示爲www.website.com/profile/username,我希望它只能是www.website.com/username - 我如何能做到這一點刪除/個人資料/從鏈接

注意什麼建議:我的網絡服務器是Nginx的所以使用重寫規則是好的,但我想知道如何把它們下面的重寫規則寫在配置文件中

+0

http://wiki.nginx.org/HttpRewriteModule –

+1

可能會爲其用戶的用戶提出問題我是個人資料;) – Cups

回答

0

用途:

rewrite ^/profile/(.*)$ /$1 permanent; 
相關問題