acheron.47
New Member
- Messages
- 6
- Reaction score
- 0
- Points
- 0
Clear your cache and refresh the page; I got a redirect to PHPBB instead of Yabb.
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.new-url.com" );
?>
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.new-url.com/"
%>
<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","http://www.new-url.com");
}
</script>
You're right.
This one solved itself.
Although I'm still curious as to where the tag is located.