I moved my servers, got my vbSEO moved and working with all the great help from Mert and Brian and am now stuck on the sitemap generator.
The sitemap generator is working and vbSEO is working, but when the URL for the sitemap is requested, I get a 404 error.
The sitemap is located at: http://www.rexmag.com/forums/sitemap_index.xml.gz
I'm using IIS, so the web.config file is:Looking at the page on development machine, I just get a "Page not found" message, which I think is from vbseo.php.Code:<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="vbSEO Imported Rule 1" enabled="true" stopProcessing="true"> <match url="^/forums/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$" ignoreCase="true" /> <action type="Rewrite" url="/forums/vbseo_sitemap/vbseo_getsitemap.php?sitemap={R:1}" appendQueryString="false" /> </rule> <rule name="vbSEO Imported Rule 2" enabled="true" stopProcessing="true"> <match url="^/forums/((archive/)?(.*\.php(/.*)?))$" ignoreCase="true" /> <conditions logicalGrouping="MatchAll"> <add input="{URL}" negate="true" pattern="/forums/(admincp/|modcp/|cron|vbseo_sitemap|nf-includes)" ignoreCase="true" /> </conditions> <action type="Rewrite" url="/forums/vbseo.php" appendQueryString="true" /> </rule> <rule name="vbSEO Rewrite All" enabled="true" stopProcessing="true"> <match url="^.*$" ignoreCase="true" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> <add input="{REQUEST_FILENAME}" negate="true" pattern="/forums/(admincp|modcp|clientscript|cpstyles|images)/" ignoreCase="true" /> </conditions> <action type="Rewrite" url="/forums/vbseo.php" appendQueryString="true" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
When I try to simulate this, I use http://www.rexmag.com/forums/vbseo_s...p=index.xml.gz and it still shows a 404 error. Anyone have an idea what I'm missing?
Thanks,
Donald



Reply With Quote