【问题标题】:How to change the url of my website to a seo friendly one?如何将我的网站的网址更改为对 seo 友好的网址?
【发布时间】:2011-10-12 20:59:06
【问题描述】:

我拥有这个网站: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 没有任何了解,我尝试了很多在线可用的教程,但所有的努力都是徒劳的。 那么请告诉我该怎么做。

【问题讨论】:

    标签: .htaccess mod-rewrite


    【解决方案1】:

    使用此内容创建一个.htaccess 文件:

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

    如果不起作用,请检查文件是否以点开头,您的主机是否允许您使用 .htaccess 文件或尝试添加Options +FollowSymLinks

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

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2011-12-12
      • 2011-07-23
      • 2011-04-06
      • 2014-01-14
      • 2017-05-14
      • 2014-07-26
      • 2016-03-11
      • 1970-01-01
      相关资源
      最近更新 更多