WP Engine Redirect Strip URLs of filetype

On wp engine, if you want to strip all URL requests of just the file name.
LIKE:
http://yoursite.com/resources.aspx
TO:
http://yoursite.com/resources
Then use this

Source* ^/(.*)/?\.aspx

Destination * http://www.yoursite.com/$1

Comments