On Mamp, this indicates an error in the Logs:
.htaccess: RewriteRule: bad flag delimiters
The problematic line is this:
Code: Select all
RewriteRule ^me/([a-zA-Z0-9áàâäãåçéèêëíìîïñóòôöõúùûüýÿæÁÀÂÄÃÅÇÉÈÊÊËÍÌÎÏÑÓÒÔÖÕÚÙÛÜÝŸÆŒ._@\-]+)$ me.php?u=$1 [QSA,NC,L]
Code: Select all
RewriteRule ^me/([a-zA-Z0-9á._@\-]+)$ me.php?u=$1 [QSA,NC,L]
Should we modify something in Apache or Php to avoid this error?
THANKS