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 )
source
share