How to Enable Apache 2 Mod_rewrite on Linux Mint 17.3 Rosa Easy Guide

December 18, 2015 | By the+gnu+linux+evangelist.

Linux Mint 17.3 Rosa Apache Rewrite Setup

Hi! The Tutorial shows you Step-by-Step How to Enable the Apache2 Rewrite Module on Linux Mint 17.3 Rosa Mate/Cinnamon/KDE/Xfce Desktop.

The mod_rewrite Module uses a Rule-based Rewriting Engine, based on a PCRE Regular-Expression Parser, to Rewrite requested URLs On the Fly. By default, mod_rewrite maps a URL to a Filesystem Path. However, it can also be used to Redirect One URL to Another URL, or to invoke an Internal Proxy Fetch.

Apache mod_rewrite provides a flexible and Powerful way to manipulate URLs using an Unlimited Number of Rules. Each Rule can have an Unlimited Number of Attached Rule Conditions, to allow you to Rewrite URL based on Server Variables, Environment Variables, HTTP Headers, or Time Stamps.

Enable Apache 2 mod_rewrite on Linux Mint 17.3 Rosa - Featured

  1. Open a Command Line Terminal emulator window
    (Press “Enter” to Execute Commands)

    Enable Apache 2 mod_rewrite on Linux Mint 17.3 Rosa - Open Terminal

    In case first see: Terminal QuickStart Guide.

  2. How to Install LAMP Server on Linux Mint.

    LAMP Server Installation Mint
  3. Enabling Apache2 Rewrite Module.

    sudo su -c "a2enmod rewrite"

    If Got “User is Not in Sudoers file” then see: How to Enable sudo

  4. How to Create an Apache 2 Virtual Host on Linux Mint.

    Mint Apache2 Virtual-Host Quick Start
  5. To Setup an Apache2 Virtual Host for Rewrite.

    sudo su -c "nano /etc/apache2/sites-available/[myDomainName].conf"

    Append inside the VirtualHost Section:

    <Directory /var/www/html/[mySite]>
    Options Indexes FollowSymLinks
    AllowOverride All
    </Directory>
    

    Ctrl+Shift+v to Paste Content on nano
    Ctrl+x to Save and Exit from nano Editor :)

  6. How to Install APC PHP Accelerator on Linux Mint

    Install PHP APC for Mint
  7. Restart Apache2 Web Server.

    sudo service apache2 restart

QuickChic Theme • Powered by WordPress