Please help me with redirect in .htaccess 
 I need redirect to url with trailing slash
www.example.cz/about--> www.example.cz/about/ 
www.example.cz/index.php?path=about --> www.example.cz/about/
and last 
www.example.cz/index.php --> www.example.cz
#MY .htaccess
<FilesMatch "\.phtml$">
  Order Deny,Allow
  Deny From All
</FilesMatch>
ErrorDocument 404 /404/
RewriteEngine On 
RewriteBase /
RewriteCond %{HTTP_HOST} ^example.cz$
RewriteRule (.*) http://www.example.cz/$1 [R=301,QSA,L]
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?path=$1 [L,QSA]
