Apache重写规则,有或没有斜线

时间:2013-04-06 17:56:30

标签: apache rewrite rule

如何让Apache重写所有URL,例如:

mydomain.com/index.php?name=about-me

使用EITHER

mydomain.com/about-me

mydomain.com/about-me /

如果网址为mydomain.com/about-me,则应加载mydomain.com/index.php?name=about-me。

此外,如果网址为mydomain.com/about-me/,则mydomain.com/index.php?name=about-me也应加载。

1 个答案:

答案 0 :(得分:0)

在你的.htaccess文件中使用mod_rewrite include这个规则来重写name = what to what /

RewriteRule ^([a-z-]+)/?$     index.php?name=$1  [NC,L]