我无法在以下Htaccess代码中找到错误。 它不仅仅是一个简单的301重定向吗?
Redirect 301 flaechenformeln.html http://www.mathespass.at/formeln/flaechenformeln.php
我也尝试过更改重定向,但它无法正常工作。 但无论如何:
Redirect 301 /testversion/klasse2/index.html http://www.mathespass.at/testversion/klasse2/index.php
不一样吗?
希望你能帮助我! 最好的问候答案 0 :(得分:0)
Redirect
指令使用给定模式执行REQUEST_URI
的起始字符串匹配,并且必须以/
开头。
请尝试使用此规则:
Redirect 301 /flaechenformeln.html http://www.mathespass.at/formeln/flaechenformeln.php