.htaccess handling some letters

I have a .htaccess file with a rewrite rule that works almost everywhere, but when I upload the site to the GoDaddy hosting environment, some letters from the URL disappear. Has anyone ever come across this before? If so, what is the solution?

Thanks in advance!

My .htaccess rule

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]

And when I insert the URL parameters, this is what displays

Array ( [0] => privy_poliy )

Instead

Array ( [0] => privacy_policy )
+3
source share
1 answer

Perhaps you have mod_speling uploaded to a fault tolerant server and that there is a firewall in the file system?

+2
source

Source: https://habr.com/ru/post/1780502/


All Articles