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.

link|improve this question

50% accept rate
1  
mod_rewrite cannot be enabled via php.ini. If mod_rewrite module is enabled/loaded on a server, then "activate" it in .htaccess via RewriteEngine On. Alternatively you will have to implement URL routing using PHP itself (check how popular frameworks do this) .. or look for another hosting. – LazyOne Sep 9 '11 at 18:03
feedback

1 Answer

You can in your

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

in your httpd.conf

link|improve this answer
Thanks @Digital, Is there any other option to enable mod rewrite. because in my hosting plan I don't have option to access httpd.conf. – vinoth Sep 9 '11 at 19:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.