Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: [QUOTE=rijas_mk;863888]You are almost correct, but you have to place the code in httpd.conf and not in the .htaccess (Internal server error will occure) You can place the code as follows in httpd.conf [CODE]<virtualhost..... <bunch of host stuff> RewriteEngine on RewriteMap lowercase int:tolower RewriteCond $1 [A-Z] RewriteRule ^/(.*)$ /${lowercase:$1} [R=301,L] </VirtualHost> … |
The End.