0

我需要从一个网址重定向到另一个完整网址

我见过的所有示例都使用 reg 表达式和我需要重定向的复杂语法

www.mydomain.com/page1.html

www.mydomain.com/page1replacement.html

我想它在 .htaccess 文件中,但是语法是什么?

Update1 试过了,但它不起作用:我需要重新启动 apache 吗?

Redirect 301 http://www.theprinterdepo.com/catalogsearch/result/index/?cat=100&q=1022&x=0&y=0 http://www.theprinterdepo.com/catalogsearch/advanced/result/?name=1022&sku=&price%5Bfrom%5D=&price%5Bto%5D=&free_shipping=&category=100 

谢谢

4

1 回答 1

0

This goes into your .htaccess file. Full URLs can be used.

Redirect 301 /page1.html http://mydomain.com/page1replacement.html
于 2012-11-19T22:22:09.830 回答