# Create pretty URLs
# End: Create pretty URLs

# Specific redirections
rewrite ^/cgbin/MSK\=1892522\=CA\=734937-0100&amp;PA\=2171026&amp;HTMLmskin6\.php$ /cgbin/MSK-1892522-CA-734937-0100-PA-2171026-HTMLmskin6.html? permanent;
rewrite ^/cgbin/FAME\=1892522\=CA\=734937-0100&amp;PA\=2171026&amp;HTMLfamedo11\.php$ /cgbin/FAME-1892522-CA-734937-0100-PA-2171026-HTMLfamedo11.html? permanent;

# Redirect all extensions to html
if ($is_args = ''){
	rewrite ^([^.]*)\.shtml$ $1.html permanent;
	rewrite ^([^.]*)\.phtml$ $1.html permanent;
	rewrite ^([^.]*)\.jhtml$ $1.html permanent;
	rewrite ^([^.]*)\.htm$ $1.html permanent;
	rewrite ^([^.]*)\.php$ $1.html permanent;
	rewrite ^([^.]*)\.aspx$ $1.html permanent;
	rewrite ^([^.]*)\.asp$ $1.html permanent;
	rewrite ^([^.]*)\.jsp$ $1.html permanent;
	rewrite ^([^.]*)\.apk$ $1.html permanent;
}
# End: Redirect all extensions to html
