Message Text |
There seem to be some issues with the SEO admin page. If everything is working fine, then you submit the form without changing anything, the URL re-writing breaks. Submit the form a 2nd time without changing anything and it works again.
---------------------------------------------------------------------
Anyway when everything else is working OK, the Link Details pages cannot be found. Go to http://www.gowesleychapel.com/directory/Automotive/ and hover on "sponsor 1". The details URL appears correctly as "http://www.gowesleychapel.com/directory/sponsor_1.html" but it can't find the Details page when you click on it.
Also the custom rewriting doesn't seem to work at all. Hover over "Sitemap" at the bottom of the page and see for yourself.
Here's the contents of .htaccess, located in ".com/directory/"
Options +FollowSymlinks
RewriteEngine on
RewriteBase /directory/
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+[^/])$ $1/ [R]
RewriteRule ^admin$ admin/index.php
RewriteRule ^admin/$ admin/index.php
RewriteRule ^/([a-z]+)/([0-9]+)/?$ link.php?action=$1&id=$2
RewriteRule ^/([0-9]+)/?$ link.php?id=$1
RewriteRule ^thread/([0-9]+)/?$ comments.php?id=$1
RewriteRule ^thread/([0-9]+)/([0-9]+)/?$ comments.php?id=$1&page=$2
RewriteRule ^([0-9]+)/?$ index.php?action=displaycat&catid=$1
RewriteRule ^([0-9]+)/([0-9]+)/?$ index.php?action=displaycat&catid=$1&page=$2
RewriteRule ^([-_/\+A-Za-z0-9]+)$ index.php?action=displaycat&catname=$1
RewriteRule ^/([-_/\+A-Za-z0-9]+)-([0-9]+).html$ link.php?action=detail&id=$2
RewriteRule ^/([-_/\+A-Za-z0-9]+)-([0-9]+).html$ link.php?action=detail&id=$2
RewriteRule ^Local_Businesses_Sitemap.html$ sitemap.php |