使用 apache mod rewrite 重定向目录

使用 apache mod rewrite 重定向目录

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

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

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

http://sitename.com/template/css

到:

http://sitename.com/css

我怎样才能做到这一点?

答案1

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

假设你有这样做的正当理由,以下方法应该可以解决问题:

RewriteEngine On
RewriteRule ^/template/css(.*)$ /css$1

相关内容