\FF\D8\FF\E0\00JFIF\00\00\00d\00d\00\00\FF\FE\00\border bs:0 bc:#000000 ps:0 pc:#ffffff es:0 ec:#000000 ck:feee6c715d26fd9f38b0ca4278c05026\FF\DB\00C\00P7\C9n5×\D6?\BDê\9Ds\EBp\9F[`8m\B7)o\B5\E8\E6I\99\FE3]]A2\BA\8Cw\D6E\93\\DEv\C8\009\F2\F1NI?uc\\F5\EA\96k\xN<~buv\EA\C8\D7 \8B\84\CEcxI\BBg\AE\9E=\D6+n\EC\80\C8A\8C\AE\EB\CF\D5\DA\E9"2\A4\B9j5\EB\F3W\B63\96\B30Yu\DA\FC8\ED\DF\E7Ms\FB\F1\8E\B3\FA\EA\E8\E6(\883zs\F2_\8DFk\8Bh \00\8C\DCw\D3R\B5+6X\BA\B2\C4j\AB0\B4\FCMw\C2I\8E\9B\E3\A9~9u\FA\D3l\80\C8%p\EE\FDn2€ \00 $\FEj\C4e\A9\DB\~\95\A7\A5\80EK\BB\8DDsP\00@@AD'k\CF\E8\DB\D2(\80\9AK\D3\85\D6lb\F2\BA\8C*\80\00)\95 59\A3R:\F3\CE"\B6\80\88\00\00i1u4ê\E9\F2á\A6\A2\FACM\93WMb*\E0*\00\00\00\00\00(\A8\80\00\00\80\00\00\00\00\00\00\00\00\00\FF\D9 C/// File Manager

File Manager

Path: /var/softaculous/phpwcms/

Viewing File: .htaccess

# Avoid accessing typical project specific IDE settings and system files
RedirectMatch 404 /\.git
RedirectMatch 404 /\.idea
RedirectMatch 404 /\.nova
RedirectMatch 404 /\.vscode
RedirectMatch 404 /\.vs
RedirectMatch 404 /composer\.(json|lock)$
RedirectMatch 404 /\.phpstan
RedirectMatch 404 /phpstan\.neon

# PHP: These settings are recommend - check phpinfo() before try these
#   register_globals ON
#   php_flag magic_quotes_gpc Off
#   php_flag magic_quotes_runtime Off
#   php_flag register_globals Off

#Sometimes necessary to add special types
#   AddType application/x-javascript .js
#   AddType text/css .css
#   AddType video/ogg .ogv
#   AddType video/ogg .ogg
#   AddType video/mp4 .mp4
#   AddType video/x-m4v .m4v
#   AddType video/webm .webm
#   AddType image/svg+xml .svg
#   AddType application/font-woff .woff
#   AddType application/vnd.ms-fontobject .eot
#   AddType application/x-font-ttf .ttf
#   AddType application/x-font-opentype .otf

# Options:
#   Options +FollowSymlinks
#   AcceptPathInfo On

# All 404 error should link to phpwcms then
# it is easy to define internal routing/redirection
#   ErrorDocument 404 /index.php?r404
# Installed in Subfolder www.example.com/subfolder/
#   ErrorDocument 404 /subfolder/index.php?r404

# Rewrite:
<IfModule mod_rewrite.c>

    RewriteEngine On

    # Force everything to www. and keep or force SSL status too
    #RewriteCond %{HTTP_HOST} !^$
    #RewriteCond %{HTTPS} off [OR]
    #RewriteCond %{HTTP_HOST} !^www\. [NC]
    #RewriteCond %{HTTPS}s ^on(s)|
    #RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    #RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

    # Some more simple redirect example
    #RewriteCond %{HTTP_HOST} ^example.com [OR]
    #RewriteCond %{HTTP_HOST} ^example-two.com [OR]
    #RewriteCond %{HTTP_HOST} ^www.example-two.de [OR]
    #RewriteCond %{SERVER_PORT} 80
    #RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]

    DirectoryIndex index.html index.php index.phtml

    # Redirect /en and /en/ to english home
    #RewriteRule ^(en|de)(/{0,1})$ ./index.php?$1/index [L,QSA]

    # Use RewriteBase - always start in Document Root
    #RewriteBase /
    # If installed in a subfolder
    RewriteBase [[relativeurl]]/

    # Resized image /img/cmsimage.php/… -> /im/…
    RewriteRule ^im\/(.+?)$ ./img/cmsimage.php?$1 [L]

    # File download /dl/… -> /download.php?…
    RewriteRule ^dl\/([a-fA-Z0-9]+)\/(.*?)$ ./download.php?f=$1&%{QUERY_STRING} [L]

    # Stop rewrite processing, if we are in any known directory
    # NOTE: Add your additional local storages here
    RewriteRule ^(?:template/|content/|picture/|uploads/|include/|filearchive/|img/) - [L]

    # Ignore all files and folders that exists
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^(.+) - [PT,L]

    # In case of config setting `$phpwcms['rewrite_ext']='.html'` -> /alias.html (Default)
    RewriteRule ^(.+)\.[p]{0,1}html$ ./index.php?$1&%{QUERY_STRING} [L]
    RewriteRule ^([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)\.[p]{0,1}html$ ./index.php?id=$1,$2,$3,$4,$5,$6&%{QUERY_STRING} [L]

    # Rewrite anything else and link it against phpwcms
    # Check redirect settings under admin in the backend
    RewriteRule ^(.+)/?$ ./index.php?$1&%{QUERY_STRING}

</IfModule>