我把我的 file.css 文件重命名为 file.php 并在新 php 文件的第一行添加此代码:
<?php
session_start();
header("Content-type: text/css");
?>
/* css content goes here ... */
现在我正在尝试通过 htaccess 将所有请求从http://puaction.com/css/file.css重定向到http://puaction.com/css/file.php但它不起作用......:/
我的 htaccess 文件有什么问题?
那是我的 .htaccess 文件:
RewriteEngine on
RewriteRule file.css file.php