|
well, i misspoke, mint actually wasn't working. Going to /mint gave me a 404 but /mint/index.php worked fine. I figured out now it stopped working once i added the rewrite cache rules in your rails guide:
RewriteRule ^(.*)/$ $1/index.html [QSA]
RewriteRule ^([^.]+)$ $1.html [QSA]
Makes sense now. I'm pretty new to these rewrite rules, anyone correct me if I'm wrong, but I changed it to:
RewriteCond %{REQUEST_URI} !mint/
RewriteRule ^(.*)/$ $1/index.html [QSA]
RewriteRule ^([^.]+)$ $1.html [QSA]
And now it seems to work again.
|