Skip to content
Snippets Groups Projects
Commit 4c4bb70c authored by Lukas Reschke's avatar Lukas Reschke
Browse files

CSS is now loaded directly instead via PHP

269f24cf was not changed in setup.php which prevented loading of CSS files in some environments (e.g. my local setup) for apps.
parent 61bc76fd
No related branches found
No related tags found
No related merge requests found
...@@ -147,7 +147,7 @@ class OC_Setup { ...@@ -147,7 +147,7 @@ class OC_Setup {
$content.= "RewriteRule ^.well-known/host-meta /public.php?service=host-meta [QSA,L]\n"; $content.= "RewriteRule ^.well-known/host-meta /public.php?service=host-meta [QSA,L]\n";
$content.= "RewriteRule ^.well-known/carddav /remote.php/carddav/ [R]\n"; $content.= "RewriteRule ^.well-known/carddav /remote.php/carddav/ [R]\n";
$content.= "RewriteRule ^.well-known/caldav /remote.php/caldav/ [R]\n"; $content.= "RewriteRule ^.well-known/caldav /remote.php/caldav/ [R]\n";
$content.= "RewriteRule ^apps/([^/]*)/(.*\.(css|php))$ index.php?app=$1&getfile=$2 [QSA,L]\n"; $content.= "RewriteRule ^apps/([^/]*)/(.*\.(php))$ index.php?app=$1&getfile=$2 [QSA,L]\n";
$content.= "RewriteRule ^remote/(.*) remote.php [QSA,L]\n"; $content.= "RewriteRule ^remote/(.*) remote.php [QSA,L]\n";
$content.= "</IfModule>\n"; $content.= "</IfModule>\n";
$content.= "<IfModule mod_mime.c>\n"; $content.= "<IfModule mod_mime.c>\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment