-1

500 Internal Server Error.

Need help for my website.

.htaccess ---------

[Sat May 09 01:35:16.765194 2015] [core:alert] [pid 671798] [client 203.82.197.51:50570] /home/username/public_html/.htaccess: Invalid command 'RewriteCond%{REQUEST_FILENAME}', perhaps misspelled or defined by a module not included in the server configuration

please help me

HBruijn
  • 72,524
  • 21
  • 127
  • 192

1 Answers1

4

Not sure if this is a typo, but you are missing a space in your RewriteCond :

RewriteCond %{REQUEST_FILENAME} file. ------------^

Also you need to enable the rewrite module for Apache :

a2enmod rewrite

Finally you need to activate the rewrite engine within your Apache config, before any other Rewrite directive :

RewriteEngine On

krisFR
  • 12,830
  • 3
  • 31
  • 40