If you need to disable redirection for a specific file on the site, you just need to add the following rule to the .htaccess file located [in the root directory of the site] :
<FilesMatch "^FILENAME$"> RewriteEngine off
There are cases when it is necessary to disable peaddressing for the robots.txt file, for example, so that the server responds with 200 - OK. For this implementation, you can use the following structure in .htaccess:
<FilesMatch "^robots.txt$"> RewriteEngine off
For quick access to the .htaccess file and its editing, you can use [file manager]
All question categories