Back
Type Name Operations
images Open
php53 Open
php56 Open
php71 Open
php81 Open
.htaccess
_index.php
edit.php
edit.xml
fileindex.php
import.php
index.php
info.xml
install.js
install.php
install.xml
license.txt
md5
notes.txt
precurio.ini

File Transfer

Upload files to current directory

File Editor: .htaccess

# The rules below basically say that if the file exists in the tree, just # serve it; otherwise, go to index.php. This is more future-proof for your # site, because if you start adding more and more content types, you don't # need to alter the .htaccess to accomodate them. # This is an important concept for the Front Controller Pattern which the # ZF MVC makes use of. RewriteEngine On RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] RewriteRule ^.*$ index.php [NC,L]