我需要基于url设置mime类型,因为它是作为text / html而不是text / css传输的。
当url具有参数pjActionLoadCss
时,应将其作为text / css传输。
我使用以下条件:
RewriteCond %{QUERY_STRING} action=pjActionLoadCss
例如:。 https://example.com/something/index.php?controller=pjFront&action=pjActionLoadCss
我如何编写RewriteRule以将其作为CSS传输? 我正在尝试设置[T = text / css],但没有成功。
答案 0 :(得分:0)
这是我在htacess中的工作方式:
RewriteEngine On
RewriteCond %{QUERY_STRING} action=pjActionLoadCss
RewriteRule (.*) $1 [E=is_css:true]
Header set Content-Type text/css env=is_css