我这样做的尝试是......
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteRule \.js$ js.php [L] ## This line is the one I tried to add
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
如果我使用标签<script type='text/javascript' src='http://www.domain.net/myfile.js'></script>
,我希望它通过js.php
.
js.php
将使用处理文件header('....'); echo file_get_contents('myfile.js');
我已经尝试了很多事情来做到这一点,我之前在一个项目中做过这个,但我不记得现在在哪里我必须重做:)
希望它是有道理的...