我有以下 .htaccess 文件:
RewriteEngine on
Options +FollowSymLinks
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule (.*)$ ./page.php?name=$1
我还有大约 20 个不同的静态地址,我想做 301 重定向。
它应该看起来像:
Redirect 301 http://www.example.com/category.php?id=3 http://www.example.com/books
Redirect 301 http://www.example.com/articles.php?id=124 http://www.example.com/birds
我尝试了所有方法并失败了。
有人可以帮助我吗?