【发布时间】:2014-03-17 20:47:02
【问题描述】:
我正在尝试重定向此链接:http://www.example.com/articles.php?article_title=this-is-an-article
到
http://www.example.com/articles/this-is-an-article
这是我目前在我的 .htaccess 文件中所拥有的似乎不起作用的内容:
重写引擎开启
重写基础/
RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+$
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [L,R=301]
Options -Indexes
RewriteRule ^articles/([a-z\-]+)$ articles.php?article_title=$1
在此先感谢
【问题讨论】: