Is it possible to reference a full/absolute path directory, such as /usr/home/public_html/x
in .htaccess mod_rewrite?
I've tried the most obvious case of putting the following in the .htaccess of a subdomain (stored in a folder in public_html), hoping it'd map (not redirect!) onto the file as pointed by the absolute directory:
RewriteEngine on
RewriteRule /xochotl /usr/home/public_html/x.php
That doesn't work... I get a 500 Internal Server Error
The .htaccess in the main public_html directory simply has the following, and it works with relative directories...
RewritEngine on
RewriteRule /xochotl x.php