Monday 16 May 2011 2:44:39 am
Thank you for your quick answer, Evo.Yes, I used documentation rewrite rules wihtout the leading slashes:
RewriteRule ^var/([^/]+/)?storage/images-versioned/.* /index_cluster.php [L]
RewriteRule ^var/([^/]+/)?storage/images/.* /index_cluster.php [L]
RewriteRule ^var/([^/]+/)?cache/public/(stylesheets|javascript)/.* /index_cluster.php [L] RewriteRule ^index_cluster.php - [L] Without the "RewriteRule ^index_cluster.php - [L]" - Line the index_cluster.php didn't work. A request for a stylesheet goes to our rewrite rules and hit the rule which rewrite to index_custer.php. The following request for index_cluster.php seems to have a rewrite, too. BOOM. index_cluster.php goes to index.php and in reason to that I didn't get my style. With my added index_cluster.php rule I stop rewriting from index_cluster.php to index.php - I will get my style.
|