MyBB Community Forums

Full Version: MyBB HTML Sitemap
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This will create a page with all your URLs and then you can put this URL in your footer and then u can achieve better internal linking

http://www.mydomain.com/sitemap/1

OK Firts you need to upload sitemap.php file at / (root)

open this file end edit line 51

 $data = ('<a href="http://www.mydomain.com/'.$post.'">'.$name.'</A>')

Add you domain here Smile

Go to AdminPanel > Templates > Add Template
Template Name: sitemap
Content:
<html>
<head>
<title>Sitemap page {$mybb->input['page']} - Forum Name</title>
{$headerinclude}
</head>
<body>
{$header}
<hr><br>
<center>{$sitemap}</center><br><BR><hr>
{$footer}
</body>
</html>

After this u need to add this line to .htaccess file
RewriteRule sitemap/(.*) sitemap.php?page=$1

After this go to footer templates and add your sitemap link somewhere you want Wink

Demo:
http://www.weblasters.com/sitemap/1

That is it Sleepy