我读了这篇文章,在这里我正在尝试使用 apache 进行 302 重定向。我使用的是 OSX 10.7 附带的默认 Apache:
Server version: Apache/2.2.21 (Unix)
Server built: Nov 15 2011 15:12:57
我试过了:
创建一个.htaccess
文件并放在里面:
Redirect temp /old.html http://localhost/new.html
或者
Redirect 302 /old.html http://localhost/new.html
或者
Redirect /old.html http://localhost/new.html
在httpd.conf
修改以下部分(请注意,在我也看到的 conf 文件中LoadModule alias_module libexec/apache2/mod_alias.so
):
<IfModule alias_module>
Redirect /old.html http://localhost/new.html
</IfModule>
我停止/启动了几次 Apache,但没有运气。怎么了?
谢谢!
编辑:不工作我的意思是我得到了 404!