How to enable mod_rewrite for Apache 2.2

后端 未结 15 1335
渐次进展
渐次进展 2020-11-21 07:09

I\'ve got fresh install of Apache 2.2 on my Vista machine, everything works fine, except mod rewrite.

I\'ve uncommented

LoadModule rewrite_module mo         


        
15条回答
  •  别跟我提以往
    2020-11-21 07:14

    For my situation, I had

    RewriteEngine On
    

    in my .htaccess, along with the module being loaded, and it was not working.

    The solution to my problem was to edit my vhost entry to inlcude

    AllowOverride all
    

    in the section for the site in question.

提交回复
热议问题