将完整网址重定向到另一个网址

时间:2012-09-27 05:38:49

标签: apache .htaccess

实际上我已将动态网址更改为静态网址。但奇怪的是我有一些动态的旧网址。其中网址为http://www.startonlinegames.com/download.php。我希望此网址重定向到http://www.startonlinegames.com/download/?page=download ..为此我在htaccess文件中添加了以下htaccess规则。

Redirect http://www.startonlinegames.com/download.php http://www.startonlinegames.com/download/?page=download

但它没有用......任何人都可以建议我。

1 个答案:

答案 0 :(得分:1)

试试这个:让我知道它是否有效,否则将尝试另一个

Options +FollowSymlinks
RewriteEngine on
rewriterule ^download.php(.*)$ http://www.startonlinegames.com/download/?page=download$1 [r=301,nc]
相关问题