How in the world do i create a site map???
How in the world do i create a site map???
Moved to Scripts & 3rd Party Apps
-A site map for bots-
- Make a robots.txt file in the main directory.
- Put a link to your site map on it in this context:
Sitemap: http://www.YourSiteURL.com/sitemap.xml- Make a sitemap.xml file.
- Put links to all your pages in the xml file in this context:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://www.YourSiteURL.com/page1.html</loc>
</url>
<url>
<loc>http://www.YourSiteURL.com/page2.html</loc>
</url>
<url>
<loc>http://www.YourSiteURL.com/yo/page3.html</loc>
</url>
</urlset>
-A site map for people-
Make a page with a bunch of links to all your pages.
Last edited by Domenico; 08-18-2008 at 08:24 PM.
The Google Sitemap Generator is a Python script that creates a Sitemap for your site using the Sitemap Protocol. This script can create Sitemaps from URL lists, web server directories, or from access logs
https://www.google.com/webmasters/to...generator.html
Okay thanks for all your help, now onto another question. How do i create a non-moving background. Like when you scroll down a website the background image doesn't move?...Also how do you make a proper form like what you would see on a [contact us] page?...
i meant an e-mail when i said [proper form] sorry for the confusion yes....
and for the background code, where do i put that piece of code? Is there a specific spot for it?
Last edited by Rufus65; 08-23-2008 at 10:18 AM.
The easiest way is to just run a google search for contact form tutorials, there'll be heaps of resources out there for you to use.
In your css file; something like:
Code:body { background-image: url(background.png); background-attachment: fixed; }
Thank you for your help i hope my site it up and running one of these days...:laugh: :lockd: