Una breve nota sobre este CMS. Para activar la funcionalidad de URLs limpias, he seguido los siguientes pasos
Editar configuración apache (buscamos que también este la directiva AccessFile como .htaccess
1 | <strong># AllowOverride All</strong> |
Crear .htaccess y editar
1 | <strong># joe .htacess</strong> |
1 2 3 4 5 6 7 | </IfModule mod_rewrite.c/> RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?q=$1 [L,QSA] </IfModule/> |
Reinicamos apache
1 | <strong># /etc/init.d/httpd restart</strong> |
Saludos