这似乎是一项非常简单的任务,但是在阅读了太多教程后,我几个小时都无法完成。请帮忙..
我需要重定向
http://example.com/myfolder/myfile.php?type=1&add=20
到这个地址:
http://example.com/newfolder/mytasks.xml
我试过太多了。我最后一次试用是这样的:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^/myfolder/myfile.php?type=1&add=20$ /newfolder/mytasks.xml [R=301,NC,L]
</IfModule>