I'm trying to pass LESS files over to a PHP compiler via mod_rewrite - when a LESS file is requested, the file should be redirected to the PHP script, passing it's path/name so a CSS file can be spat out.
HTML:
<link rel="stylesheet/less" type="text/css" href="styles/main.less" />
<link rel="stylesheet" type="text/css" href="styles/main.less.css" />
.htaccess:
RewriteEngine On
RewriteBase /v2/
RewriteRule ^([^.]*\.less)$ compilers/lessphp.php?file=$1 [R,L,NC]
Starting out, there is only a .less file.
Refreshing 'http://mydomain.com/v2/' will result in unstyled content. No .css file is created in /styles/.
If I go to 'http://mydomain.com/v2/styles/main.less' I'll be redirected to my PHP compiler 'http://mydomain.com/v2/compilers/lessphp.php?file=styles/main.less', and 'main.less.css' is created as it should within /styles/. Returning to 'http://mydomain.com/v2/', I now have styled content.
Rewrites are only occurring in the URL bar of the browser, not the page of the site.
What am I doing wrong?
EDIT: Is there also a better way to do what I am trying to do?
EDIT2:
/v2/
--index.php
--.htaccess
--/styles/
----main.less
----main.less.css
--/compilers/
----lessphp.php
<link rel="stylesheet/less" type="text/css" href="styles/main.less" />links? – Jon Lin Aug 16 '12 at 20:35mydomain.com/styles/main.less) into the browser window. LESS file is redirected to the PHP page (http://mydomain.com/v2/compilers/lessphp.php?file=styles/main.less) and css file is generated. It's not working if you just go to index.php, where the LESS file is simply<link rel="stylesheet/less" type="text/css" href="styles/main.less" />– Patrick Aug 16 '12 at 21:16RewriteRule ^([^.]*\.less)$ $1.css [R,L,NC]wont even changestyles/main.lesstostyles/main.less.css, unless again you put it in the address bar... The page itself will not display the rewritten location/name... – Patrick Aug 16 '12 at 21:30#RewriteRule ^([^.]*)\.jpg$ $1.gifworks fine to altertest.jpgin some HTML totest.gif. What's the difference?! Is it the location in the<head>? – Patrick Aug 16 '12 at 22:13