Does page structure URL affect SEO?
PermalinkIs he right or talking out of his @$$?
That should get rid of most of the index.php's for you.
Jon
define('URL_REWRITING_ALL',true);
I think google wants less that 160 characters in a url. (I can't remember the exact number)
I have been sticking to the twitter rule. 140 characters for everything. Descriptions, titles, ect :) Happy SEOing!
Jared
1. Early versions of concrete5 used underscores as the default page path separator. As requested, people thought hyphens were better for SEO so we made hyphens the default. You can override these by setting this setting in config/site.php:
define('PAGE_PATH_SEPARATOR', '_');
2. If you want to remove index.php from your URLs, just enable pretty URLs from within the settings section of your Dashboard. This setting has been there for a long time. You'll have to add some configuration to a file on your server if concrete5 can't add it for you (but in many cases it can add these lines automatically.)
3. The setting above affects public navigation on your site, built by the Auto-Nav, Page List blocks, etc... If you want to force ALL your URLs to, by default, be accessed without index.php, you'll have to add this option to your config/site.php file:
define('URL_REWRITING_ALL',true);
/contact-us
than
/contactus
or
/contact_us
Is that what you were asking, or were you refering to the actual structure of the sitemap?
Jon