【发布时间】:2016-09-18 06:41:00
【问题描述】:
您好,我想将一些动态 URL 重定向到一些静态 URL 例如
- /folder/index.php?rid=321
到
- http://example.com/folder/some-name-321.htm
和
- /folder/index.php?rid=324
到
- http://example.com/folder/some-other-name-324.htm
我试过了
Redirect 301 /folder/index.php?rid=321 http ://example.com/folder/some-name-321.htm
Redirect 301 /folder/index.php?rid=324 http ://example.com/folder/some-other-324.htm
但不工作。 我应该如何重定向这些 URL 另外,我应该在哪里放置我的 htaccess 文件。 这应该在 /folder/.htaccess 中,或者我应该将规则放在站点根目录中的主 htaccess 文件中。
亲切的问候
【问题讨论】:
标签: apache .htaccess redirect mod-rewrite