|
The dynamic User Site Map updates itself automatically A link to a dynamic Site Map or index of web page content is typically inserted in the page footer.
New pages will automatically appear in the auto-generated Site Map and include text used in navigation links as well as page headlines.
The administrator of this content management system can use the built-in Google Sitemap tool to quickly and easily generate links used for various purposes, including positioning on other websites to provide relevant incoming links to each page.
Module mod_rewrite URL Rewriting Engine
The administrator of this content management system can use a built-in Rewriterule generator for use with an Apache .htaccess file. A complex system can be created to give the appearance of using exotic hyphenated page names using the main heading of each page.
An example of the code auto-generated for an .htaccess file follows. This allows the server to rewrite requests for a particular page id to a more relevant hyphenated name, which may or may not enhance SEO. These methods can be error prone and are not recommended because one typo in the complex code can potentially crash the server. SEO benefits are questionable.
Options All -Indexes +FollowSymlinks
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^professional-web-hosting-with-cpanel-php-mysql-and-fantastico-25.html index.php?s=25 [NC,L]
RewriteRule ^website-hosting-references-nov-2009-60.html index.php?s=60 [NC,L]
RewriteRule ^domain-name-registration-28.html index.php?s=28 [NC,L]
RewriteRule ^gmail-or-google-apps-29.html index.php?s=29 [NC,L]
RewriteRule ^doug's-content-management-system-cms-uses-php-and-mysql-on-cpanel-30.html index.php?s=30 [NC,L]
RewriteRule ^about-the-client-log-in-system-used-by-this-cms-64.html index.php?s=64 [NC,L]
RewriteRule ^this-cms-includes-lightbox-photo-gallery-65.html index.php?s=65 [NC,L]
RewriteRule ^google-sitemap-auto-generated-every-night-to-enhance-seo-66.html index.php?s=66 [NC,L]
RewriteRule ^the-dynamic-standard-site-map-updates-itself-automatically-71.html index.php?s=71 [NC,L]
RewriteRule ^nightly-backup-of-important-mysql-database-tables-67.html index.php?s=67 [NC,L]
RewriteRule ^fast-download-of-web-page-content-using-gzip-compression-68.html index.php?s=68 [NC,L]
RewriteRule ^wysiwyg-is-editing-achieved-in-this-cms-using-fck-2-69.html index.php?s=69 [NC,L]
RewriteRule ^mini-forum-widget-may-be-adaptable-for-use-as-an-f.a.q.-page-or-newsletter-page.-70.html index.php?s=70 [NC,L]
RewriteRule ^search-engine-optimization-seo-47.html index.php?s=47 [NC,L]
RewriteRule ^php-programmer-php-developer-61.html index.php?s=61 [NC,L]
RewriteRule ^web-design=graphic-design=and-flash-animation-by-cymax-media-llc-62.html index.php?s=62 [NC,L]
RewriteRule ^lightbox-photo-gallery-27.html index.php?s=27 [NC,L]
RewriteRule ^vertical-gallery-59.html index.php?s=59 [NC,L]
RewriteRule ^other-graphics-63.html index.php?s=63 [NC,L]
RewriteRule ^contact-doug-hockinson-9.html index.php?s=9 [NC,L]
RewriteRule ^site-map-10.html index.php?s=10 [NC,L]
RewriteRule ^basic-search-of-headlines-and-content-32.html index.php?s=32 [NC,L]
RewriteRule ^list-of-news-articles-33.html index.php?s=33 [NC,L]
</IfModule>
Details on this voodoo can be found at Module mod_rewrite URL Rewriting Engine.
|