2011-10-12 136 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]