Jump to content

[SOLVED] header('location: ');


next

Recommended Posts

I'm trying to redirect when user is logged out:

http://localhost/ahk_php/sidebar_links/logout.php

to

http://localhost/ahk_php/index.php

here's my code, logout.php:

<?php
session_start();
require_once($_SERVER['DOCUMENT_ROOT'] . '/ahk_php/config.php');
session_destroy();
header('location: ' . $_SERVER['HTTP_HOST'] . '/ahk_php/index.php');
?>

But here instead of: http://localhost/ahk_php/index.php

i get: http://localhost/ahk_php/sidebar_links/localhost/ahk_php/index.php

 

Why is it appending instead of replacing url completely?

Link to comment
Share on other sites

thorpe, thanks this answers my question perfectly!

NathanLedet , nah, it would append that to my current location.

New Coder , this was a work around that i was using until now, the problem is that if you change files location it's not going to work anymore.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.