I have directory named /template/css

The full url is http://sitename.com/template/css

I need this folder to be redirected using apache mod rewrite

from

http://sitename.com/template/css

to:

http://sitename.com/css

How can I do this?

link|improve this question
feedback

migrated from stackoverflow.com Aug 14 '11 at 22:11

This question came from our site for professional and enthusiast programmers.

1 Answer

Why do you need to use mod_rewrite? Why don't you just Alias /css to the location in the filesystem where the CSS files are actually stored?

Assuming that you do have a valid reason for doing this, the following should do the trick:

RewriteEngine On
RewriteRule ^/template/css(.*)$ /css$1
link|improve this answer
feedback

Your Answer

 
or
required, but never shown