vinoth
vinoth

Reputation: 471

How to enable mod_rewrite in php.ini on shared hosting

I recently hosted my website in shared hosting the sites mod_rewrite is not working. I there anything I have to add in php.ini file to enable the mod_rewrite option in php.ini file.

Upvotes: 3

Views: 15115

Answers (1)

Digital Human
Digital Human

Reputation: 1637

You can in your

<VirtualHost *:80> RewriteEngine On</VirtualHost>

in your httpd.conf

Upvotes: 2

Related Questions