How to get htaccess to work on MAMP

前端 未结 5 1318
情话喂你
情话喂你 2020-11-28 07:31

I am trying to get the .htaccess working in MAMP.

The content of the .htaccess is a simple redirect line but it does not work. I am trying

5条回答
  •  孤城傲影
    2020-11-28 07:50

    Go to httpd.conf on /Applications/MAMP/conf/apache and see if the LoadModule rewrite_module modules/mod_rewrite.so line is un-commented (without the # at the beginning)

    and change these from ...

    
        ServerName ...
        DocumentRoot /....
    
    

    To this:

    
        ServerAdmin ...
        ServerName ...
    
        DocumentRoot ...
        
            Options FollowSymLinks
            AllowOverride None
        
        
            Options Indexes FollowSymLinks MultiViews
            AllowOverride All
            Order allow,deny
            allow from all
        
    
    

提交回复
热议问题