Where is this redirect meta tag located?

Status
Not open for further replies.

acheron.47

New Member
Messages
6
Reaction score
0
Points
0
I installed YaBB in the /forums directory. I then uninstalled it. But going to /forum in the browser will still redirect to a missing YaBB file.

I can't actually find it, how do I get rid of it?

Many thanks
 

Attachments

  • Untitled-1.gif
    Untitled-1.gif
    20.9 KB · Views: 50

gomarc

Member
Messages
516
Reaction score
18
Points
18
Just get rid of the folder “forum”.

Go to cPanel > File Manager and open your public_html folder.
Locate the “forum” folder and delete it.
 

Livewire

Abuse Compliance Officer
Staff member
Messages
18,169
Reaction score
216
Points
63
Clear your cache and refresh the page; I got a redirect to PHPBB instead of Yabb.
 

acheron.47

New Member
Messages
6
Reaction score
0
Points
0
You're right. :lol:
This one solved itself.


Although I'm still curious as to where the tag is located.
 
Last edited:

zubair12

Banned
Messages
631
Reaction score
0
Points
0
hey this is cool stuff:
but these are some more redirect examples:

php redirect:
Code:
<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.new-url.com" );
?>
ASP Redirect:
Code:
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.new-url.com/"
%>

ASP .NET Redirect:
Code:
<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>
Edit:
You're right. :lol:
This one solved itself.


Although I'm still curious as to where the tag is located.


I know that you r talking about meta tags but this is also a cool info
 
Last edited:
Status
Not open for further replies.
Top