2012-02-07, 21:06:21
GetSimple's default rewriterule allows anything between the base url and the slug. This 'feature' is not a problem for search engines, as the correct canonical url (defined by your custom/fancy permalink settings) is in the header:
If you want to enforce the url structure (fancy or custom) you have defined in your GS settings, you can edit your gsconfig.php and enable canonical redirection:
However this does not work properly with pages that use url parameters (news managers, galleries, etc.).
(I am developing a small plugin that enables permalink redirection, but letting you exclude certain slugs.)
Code:
<link rel="canonical" href=...
If you want to enforce the url structure (fancy or custom) you have defined in your GS settings, you can edit your gsconfig.php and enable canonical redirection:
Code:
# Enable Canonical Redirects?
define('GSCANONICAL', 1);
However this does not work properly with pages that use url parameters (news managers, galleries, etc.).
(I am developing a small plugin that enables permalink redirection, but letting you exclude certain slugs.)