Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Ubuntu enable mod rewrite in apache server

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 244
    Comment on it

    Go to this directory.

    etc/apache2/apache2.conf

    you will find below code with AllowOverride none.

    <Directory />
        Options FollowSymLinks
        AllowOverride none
        Require all denied
    </Directory>
    
    <Directory /usr/share>
        AllowOverride none
        Require all granted
    </Directory>
    
    <Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride none
        Require all granted
    </Directory>
    

    Edit the code and make AllowOverride none to AllowOverride All.

    <Directory />
        Options FollowSymLinks
        AllowOverride All
        Require all denied
    </Directory>
    
    <Directory /usr/share>
        AllowOverride All
        Require all granted
    </Directory>
    
    <Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
    </Directory>
    

    Start the Server again and eco out the phpinfo();

    You will see mode_rewrite enabled.

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: