实际上我已将动态网址更改为静态网址。但奇怪的是我有一些动态的旧网址。其中网址为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
但它没有用......任何人都可以建议我。
答案 0 :(得分:1)
试试这个:让我知道它是否有效,否则将尝试另一个
Options +FollowSymlinks
RewriteEngine on
rewriterule ^download.php(.*)$ http://www.startonlinegames.com/download/?page=download$1 [r=301,nc]