/var/softaculous/pimcore
NameSizeModeActions
images/-0755rm
php53/-0755rm
php56/-0755rm
php71/-0755rm
php81/-0755rm
php82/-0755rm
.htaccess8400644editdlrm
bundles.php1240644editdlrm
config.yaml39580644editdlrm
database.yaml2350644editdlrm
edit.php45460644editdlrm
edit.xml4330644editdlrm
extend.php105030644editdlrm
fileindex.php2780644editdlrm
import.php45740644editdlrm
info.xml37420644editdlrm
install.js9210644editdlrm
install.php103650644editdlrm
install.xml6270644editdlrm
md527170644editdlrm
notes.txt39090644editdlrm
services.yaml28830644editdlrm
update_pass.php4990644editdlrm
Edit: /var/softaculous/pimcore/.htaccess (840B)
RewriteEngine On RewriteRule ^(.*)$ public/$1 # ASSETS: check if request method is GET (because of WebDAV) and if the requested file (asset) exists on the filesystem, if both match, deliver the asset directly RewriteCond %{REQUEST_METHOD} ^(GET|HEAD) RewriteCond [[softpath]]/public/var/assets%{REQUEST_URI} -f RewriteRule ^(.*)$ /var/assets%{REQUEST_URI} [PT,L] # Thumbnails RewriteCond %{REQUEST_URI} .*/(image|video)-thumb__[\d]+__.* RewriteCond [[softpath]]/public/var/tmp/thumbnails%{REQUEST_URI} -f RewriteRule ^(.*)$ /var/tmp/thumbnails%{REQUEST_URI} [PT,L] # static pages RewriteCond %{REQUEST_METHOD} ^(GET|HEAD) RewriteCond %{QUERY_STRING} !(pimcore_editmode=true|pimcore_preview|pimcore_version) RewriteCond [[softpath]]/public/var/tmp/pages%{REQUEST_URI}.html -f RewriteRule ^(.*)$ /var/tmp/pages%{REQUEST_URI}.html [PT,L]