Hi.. this might be a no brainer to some, but I am trying to specify some RewriteCond in an .htaccess file and I am failing badly.
Heres what I have :
RewriteCond %{REQUEST_FILENAME} employee [NC]
RewriteRule ^(.*)$ /resources/employee [L,R=301]
will redirect fine... but if I include any other rules that include 'employee' like this:
RewriteCond %{REQUEST_FILENAME} employee/another [NC]
RewriteRule ^(.*)$ resources/employee/another [L,R=301]
It redirects me to the first Rule: /resources/employee
I have tried many variations, but no luck. Any ideas?