Hello,
I'm trying to put some mod_rewrite rules in the custom httpd conf for a particular domain, rather than in htaccess. How do i make sure it goes in the right section of the conf file?
I'm trying to insert:
RewriteMap lc int:tolower
RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule (.*) ${lc:$1} [R=301,L]
but that has to go into the directory part of the config, help
I'm trying to put some mod_rewrite rules in the custom httpd conf for a particular domain, rather than in htaccess. How do i make sure it goes in the right section of the conf file?
I'm trying to insert:
RewriteMap lc int:tolower
RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule (.*) ${lc:$1} [R=301,L]
but that has to go into the directory part of the config, help