0

I'm new to this website thing. I wrote a .htaccess file and enabled the mod_rewrite.

But still i get the same error in my error.log file.

This error is on my live website but not when i run it locally on my PC.

Anyone please help.

.htaccess file

live website

directory

This is my error.log

i have done the "sudo a2enmod rewrite" .

and mod rewrite isinstalled.

Rishabh Anand
  • 167
  • 3
  • 12

1 Answers1

1

After installation of mod rewrite restart your services then to check if mod rewrite is enabled and used add this in your .htaccess file:

RewriteEngine On
RewriteRule ^.*$ mod_rewrite.php

Then create file mod_rewrite.php and add this and run it

<?php echo "Success"; ?>

If is not enabled open httpd.conf (Apache Config file) and look for this line, remove #, save the file and reload apache again.

#LoadModule rewrite_module modules/mod_rewrite.so
S.I.
  • 3,250
  • 12
  • 48
  • 77
  • but there's no #LoadModule rewrite_module modules/mod_rewrite.so in the /etc/apache2/apache2.conf – Rishabh Anand Oct 17 '16 at 05:42
  • Please refer and check this thread may help: http://askubuntu.com/questions/48362/how-to-enable-mod-rewrite-in-apache – S.I. Oct 17 '16 at 05:49