我想将 url 从 stockpicks.php 重写为 stock-picks。当我访问 www.website.com/stock-picks 时会显示 stockpicks.php 页面。我使用以下规则。
RewriteRule ^stock-picks /stockpicks.php [PT]
我还想让搜索引擎知道我以前的页面 stockpicks.php 永久移动到 stock-picks。我使用以下规则,但 301 重定向似乎不起作用。我猜 RewriteCond 是不对的。
RewriteCond %{THE_REQUEST} stockpicks.php$
RewriteRule ^stockpicks.php$ /stock-picks [R=301,L]