Recent Topics

1 Feb 08, 2007 19:48    

My b2evolution Version: Not Entered

Some uses uses use my root website address which is:

http://www.alkhater.net

instead of :

http://www.alkhater.net/blog

How can I re-direct the automatically to my blog. I tried to use this in index.html in the root but it only shows this:

http://www.alkhater.net/?redirect_to=http://www.alkhater.net/blog

2 Feb 11, 2007 20:36

Put a index.php file in your root with the following content:
<?php
header( 'Location: http://www.alkhater.net/blog' );
?>

Or a .htaccess file with the following line (if you use Apache):
Redirect permanent / /blog

Both not tested, but the direction should be clear (for further research).

3 Feb 14, 2007 16:12

Thanks blueyed,

I used the first method and it works just fine.


Form is loading...