我知道那里有几篇关于此的文章,但是当涉及到 .htaccess 文件中的重定向时,我是新手,所以请原谅我的无知!我已经尝试了一些事情,但我无法让它发挥作用。
我有旧网址http://domain.com/ourlocations.asp?cat=41&id=41我试图在 .htaccess 中重定向到http://domain.com/locations。第一个/旧网址通过二维码包含在打印工作中,所以我有点卡住了。我试过使用简单的 Redirect 301 但没有运气。我看过一些关于使用 RewriteRule 的帖子,但我在 .htaccess (WordPress) 中有现有代码,并且害怕更改以防它关闭网站。
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
有没有人有任何想法?谢谢你的时间。