Forum Moderators: phranque
Has been working fine but seems to have happened when gzip compression was enabled on the server
Here is the .htaccess file:
AddType application/x-httpd-php .php .htm .html
RewriteEngine On
RewriteRule ^([[:punct:]/:\-\'(){}.&=_a-zA-Z0-9\]*)/([[:punct:]/:\-\'(){}.&=_a-zA-Z0-9\]*) /community/articles/buying.php?cat=$1&ref=$2 [L]
RewriteRule ^([[:punct:]/:\-\'(){}.&=_a-zA-Z0-9\]*)/([0-9]*)/ /community/articles/article.php?title=$1&id=$2 [L]
Any ideas please?
See the mod_rewrite documentation and the regex tutorial cited in our Apache Forum Charter for more information on patterns and escaping rules (which differ inside and outside of alternate-character [groups]).
Jim