Converted my site to Revolution & love it. 1 problem left to solve.
www.example.com/learn.html is not the same as www.example.com/LEARN.com
The url has to be an exact match (its case sensitive). In my .htaccess I have the following:
# Friendly URLs Part
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} .
php_value memory_limit 64M
# Force all pages to go to www.example.com for SEO
RewriteCond %{HTTP_HOST} !^www\.example\.com [NC]
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
# Friendly URLs
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA,NC]
# Additional Settings Follow
ExpiresActive On
ExpiresByType image/gif A2592000
ExpiresByType image/jpeg A2592000
ExpiresByType image/png A2592000
BrowserMatch "MSIE" brokenvary=1
BrowserMatch "Mozilla/4.[0-9]{2}" brokenvary=1
BrowserMatch "Opera" !brokenvary
SetEnvIf brokenvary 1 force-no-vary
Adding the "NC" does not work. My setting for FURL Lowercase Aliases is "no" - I think this means aliases are not case sensitive.
The issue is that I have links for partners that have different capitalizations of urls (ex. /page1.html or /Page1.html) and the wrong one is sent to my default error page.
Any ideas? Thank you in advance for taking the time to help!