diff --git a/.htaccess b/.htaccess index 2ed72c9..e087bb5 100644 --- a/.htaccess +++ b/.htaccess @@ -1,6 +1,9 @@ RewriteEngine On + # Route /assets/ requests to public/assets/ + RewriteRule ^assets/(.*)$ public/assets/$1 [L,QSA] + # Module API routing RewriteRule ^api/license/v1(?:/(.*))?$ public/api/license/v1/index.php [L,QSA] RewriteRule ^api/watchdog/v1(?:/(.*))?$ public/api/watchdog/v1/index.php [L,QSA] diff --git a/public/index.php b/public/index.php index 127e8cf..105fb54 100644 --- a/public/index.php +++ b/public/index.php @@ -981,6 +981,16 @@ $baseUrl = $protocol . '://' . $host; +
+ + +
+