我希望我能够清楚地解释清楚,但如果不能让我知道,我会尽力澄清。
我需要配置apache以从一个url重定向到另一个url,例如mySite.com/ maven2 应重定向至mySite.com/ content / maven2 。你知道我应该怎么做吗?
答案 0 :(得分:0)
在php中你可以这样做:
header("LOCATION: mySite.com/content/maven2");
或者您可以使用元刷新...
答案 1 :(得分:0)
查看Redirect Apache指令。
Redirect /maven2 http://example.com/content/maven2
您可以在.htaccess或httpd.conf
中使用它