How to enable mod_rewrite in php.ini on shared hosting

Recently, I hosted my site on a shared hosting site mod_rewrite, which does not work. I need to add something to the php.ini file to enable the mod_rewrite parameter in the php.ini file.

+2
url-rewriting apache .htaccess shared-hosting suphp
source share
1 answer

You can in

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

in your httpd.conf

+1
source share

All Articles