Hey guys,
I've got a stupidly simple rewrite that I'm having trouble with.
Basically I just want one URL to resolve as another.
So, if a user visits /libs/file.html I want it to load /libs/loader.php
Here's what I have now - that does not work...
Any idea on how to make this work properly?
I've got a stupidly simple rewrite that I'm having trouble with.
Basically I just want one URL to resolve as another.
So, if a user visits /libs/file.html I want it to load /libs/loader.php
Here's what I have now - that does not work...
Code:
# Enable Rewrite Engine
RewriteEngine on
#Create friendly URL
RewriteRule ^/libs/file\.html$ /libs/loader\.php [L]
Any idea on how to make this work properly?