Foren / Cotonti / Support / I need help with mod_rewrite

mod_rewrite for dummies

Trustmaster
#28005 19. Januar 2011, 04:30
A patch for alias generating function, open plugins/autoalias2/inc/autoalias2.functions.php at line 31 and replace
$title = str_replace(' ', $cfg['plugin']['autoalias2']['sep'], $title);
with
$title = preg_replace('#\s+#', $cfg['plugin']['autoalias2']['sep'], $title);
and then try to reassign aliases to those pages (using Admin => Tools => AutoAlias2). Before that you might need to reset your aliases with an SQL query:
UPDATE sed_pages SET page_alias = '';
or edit problematic aliases manually.
May the Source be with you!