HI,
I'm using wordpress 3.5.2 and W3 Total Cache 0.9.2.11.
I'm trying to set up a cdn with Amazon S3.
My theme is using a dynamically generated css by including a file named "style.css.php"
<link class="nocdn" rel="stylesheet" href="http://www.domain.com/wp-content/themes/lespaul/assets/css/style.css.php?ver=20130601" type="text/css" media="screen">
What I need is to tell W3 Total Cache is don't request that stylesheet to the cdn because it is needed to be served from the content server
For example, W3 Total Cache is going to change the previous link to:
<link class="nocdn" rel="stylesheet" href="http://static.cname.net/wp-content/themes/lespaul/assets/css/style.css.php?ver=20130601" type="text/css" media="screen">
I need to keep it as before, pointing to the domain http://www.domain.com
In my web site i'm requesting other stylesheets that need to be requested from the cdn.
Thanks in advance.