Error in log viewer !

#1
Hello

under error in Server Log Viewer :

Code:
ERROR	[config] rewrite: unknown server variable while parsing: RESPONSE_BODY
What causes this error?
When I send a request to another page will not load!
 

NiteWave

Administrator
#2
maybe errors in your .htaccess

find out which .htaccess caused the issue:
#grep RESPONSE_BODY .htaccess

and paste the .htaccess here.
 
#3
thanks for answer !

htaccess to change the name of my problem was solved!
Htaccess but it must be open to internal pages
my htaccess :
Code:
Options -Indexes

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /amlak/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /amlak/index.php [L]
</IfModule>
 
#5
yes !
when .htaccess rename to .htaccess1 :
mydomain.com = no prblem
but internal pages
mydomain.com/any_page/ = error 404 !
 

NiteWave

Administrator
#6
don't rename .htaccess

your domain require this .htaccess. rename it or without it, will cause 404 error. --- just as expected behavior.
 
#7
If I do not rename this file"htaccess" ERROR "[config] rewrite: unknown server variable while parsing: RESPONSE_BODY" error is displayed in server log
 
Last edited:
Top