.htaccess: RewriteEngine not allowed here

前端 未结 8 2046
醉话见心
醉话见心 2020-12-01 11:53

I uploaded the .htaccess to the server and received an Error 500 (Internal Server Error).

And in the error log I had the following error:

8条回答
  •  一生所求
    2020-12-01 12:20

    Let's say your DOCUMENT_ROOT is /home/foo/web then have this config in your httpd.conf file:

    
        Options Indexes FollowSymLinks Includes ExecCGI
        AllowOverride All
        Order allow,deny
        Allow from all
    
    

    This should take care of RewriteEngine is not allowed error you're getting.

提交回复
热议问题