Sobota, Červen 27, 2026

PrettyURLs

Aby fungovaly PrettyURLs u příspěvků, musí se upravit .htaccess

1) In Setting > FlatPress Protect > enable editing .htaccess
2) In Plugin > setting PrettyURLs > Save .htaccess

AddType application/x-httpd-php .php .htm .html
Options -Indexes
<IfModule mod_rewrite.c>
    RewriteEngine On
    # Zde upravte cestu k adresáři (např. RewriteBase / nebo RewriteBase /flatpress/)
    RewriteBase /
    
    RewriteRule ^.htaccess$ - [F]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
</IfModule>