There is a rule in .htaccess to hide all txt files
RewriteCond %{REQUEST_FILENAME} -f RewriteRule ^.*\.txt$ /index.php On LAN, everything works - as I upload to the server, nothing works as if there is no such rule, and all txt files can be viewed.
The rest of the rules (and there are many), for example
RewriteRule ^module/([0-9A-Za-z]+)(/?)+$ /index.php?module=$1 [L,QSA] What could be the reason?
At the beginning of the file I have this
php_value display_errors 1 php_value error_reporting 2047 RewriteEngine On Options +FollowSymLinks Options -Indexes