2011-10-12 127 views
0

我擁有此網站:http://www.finalyearondesk.com。 我想喜歡的網址更改: http://www.finalyearondesk.com/index.php?idname=how-to-recover-ubuntu-after-it-is-crashed 到這樣的事情: finalyearondesk.com/posts/how-to-recover-ubuntu-after-it-is-crashed 使用的.htaccess。我沒有任何有關.htaccess的知識,並且我嘗試了很多在線的教程,但所有的努力都是徒勞的。 那麼告訴我如何做到這一點。如何將我網站的網址更改爲友好的網址?

回答

2

與此內容創建一個.htaccess文件:

RewriteEngine On 
RewriteRule ^posts/([^/]*)$ /index.php?idname=$1 [L] 

如果它不工作,檢查該文件以一個點,你的主機託管服務提供商允許您使用.htaccess文件或嘗試添加Options +FollowSymLinks

Options +FollowSymLinks 
RewriteEngine On 
RewriteRule ^posts/([^/]*)$ /index.php?idname=$1 [L]