在web调试器中,301重定向页的html显示为:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="http://www.website.com
这是关于301重定向使用htaccess的一个非常基本的问题,但是我对于regexp和htaccess的技能非常有限,或者根本没有技能。
我想重定向所有没有点html的url查询,将其重定向到.html,我的意思是如何将所有somethinghtml重定向到something.html,并且请注意,something在每个url中都是一个真正的单词。any-somethinghtml to any-something.html some-somethinghtml to some-something.html - another-somethinghtml to another-somethi
我有一个页面,它接受查询和字符串以及它的URL。然后,使用302重定向到另一个页面,页面的响应包含HTML代码和重定向头。如下所示:
<html><body>
You are being <a href="The link where will redirect">redirected</a>.
</body></html>
我的问题:
如果浏览器会自动重定向,为什么会有HTML代码?
如果我在href中注入代码,是否可以在重定向发生之前执行JavaScript代码?