使用 apache mod 重写重定向目录

1 mod-rewrite apache-2.2

我有一个名为的目录 /template/css

完整的网址是 http://sitename.com/template/css

我需要使用 apache mod rewrite 重定向此文件夹

http://sitename.com/template/css
Run Code Online (Sandbox Code Playgroud)

到:

http://sitename.com/css
Run Code Online (Sandbox Code Playgroud)

我怎样才能做到这一点?

wom*_*ble 5

为什么需要使用mod_rewrite?为什么不直接Alias /css到文件系统中实际存储 CSS 文件的位置?

假设您确实有这样做的正当理由,以下应该可以解决问题:

RewriteEngine On
RewriteRule ^/template/css(.*)$ /css$1
Run Code Online (Sandbox Code Playgroud)