Hey mate ,
Tnx for answering , i tho this is a dead end ...
Yea i tested with Bender and Modern ... same results also i disabled all plugins and test ti with same results..
When i disable friendly URL from settings / permalinks its working both ways
https://www.trgozona.com/search/pattern,šerpa - refresh from previues
https://www.trgozona.com/index.php?page=search&sPattern=šerpa - generates after new search
So i guess there is some conflict with friendly URL on and off ....
Htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^
https://www.%1%{REQUEST_URI} [L,NE,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
Header set Strict-Transport-Security "max-age=31536000; includeSubDomains; preload"
</IfModule>
#RewriteCond %{HTTPS} !=on
#RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
#####################################
# SEVERAL USEFUL FIXES
# Make sure IE9 looks good as well
#BrowserMatch "MSIE 9.0" ie9
#header set X-UA-Compatible "IE=Edge,chrome=1"
############################
# BROWSER CACHING
# The expires module controls the Expires and Cache-Control headers.
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 1 year"
</IfModule>