I have my blog at location /blog, and the content is dynamic.
I would like /index.php on my site to mirror /blog
How do I write index.php to mirror a dynamic webpage?
I have my blog at location /blog, and the content is dynamic.
I would like /index.php on my site to mirror /blog
How do I write index.php to mirror a dynamic webpage?
You should really just forward it or you'll get dinged for duplicate content by search engines. This should matter to you if you're interested in people finding your content via search.
index.php should have the following code:
<?php
header('Location: /blog', true, 301);
exit;
?>