htaccess redirect virtual alias to url

.htaccess

Solution

RewriteEngine On
RewriteBase /
RewriteRule ^page$ /subfolder/subfolder/thepage.php [L]

Problem

I have a php page: ``` www.mydomain.com/subfolder/subfolder/thepage.php ``` I want to access it via: ``` www.mydomain.com/page ``` How is that possible using the .htaccess file?! I want to use an alias or virtual name to replace the long directory url.

Original source