我想重写一个 URL,我不希望现有链接再转到旧页面(地址)。
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^about-us$ /shop/static_page\.php\?static_page_id=3 [NC,L]
这就是我的 .htaccess 文件目前的样子,它工作正常 - 尽管当我添加正常的重定向规则时,例如:
Redirect 301 /shop/static_page.php?static_page_id=3 http://example.com/about-us
这不起作用 - 就好像这条线不存在一样。请问有什么想法吗?