URL重写查询字符串

时间:2013-11-02 22:25:25

标签: url rewrite

我已经谷歌长期为此但找不到答案。

我有这个网址:

www.mysite.com/index.php?tip=1 

(分别为www.mysite.com/?tip=1

并希望将其重写为:

www.mysite.com/tip/1

我们将不胜感激。

1 个答案:

答案 0 :(得分:0)

您需要在apache配置中启用重写模块,并将.htaccess文件中的以下设置放在您的基本文件夹中

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule   ^tip/(.*)  /index.php?tip=$1  [L,NC,QSA]