Dexter Evil Clone.

Alchemiclabs.ca


Welcome Demo

Setting up .htaccess files to work on Windows, Debian, and openSUSE systems with Apache.

1. Windows

On Windows, you'll need to install Apache (typically through WAMP, XAMPP, or a manual setup) to support .htaccess files.

Steps:

  1. Enable .htaccess in Apache Configuration:

    • Open the Apache configuration file, usually located at C:\wamp64\bin\apache\apache2.x.x\conf\httpd.conf or C:\xampp\apache\conf\httpd.conf.
    • Find the following block and change AllowOverride None to AllowOverride All:
      <Directory "C:/wamp64/www/">
          Options Indexes FollowSymLinks
          AllowOverride All
          Require all granted
      </Directory>
  2. Ensure mod_rewrite is enabled:

    • Look for the following line in the httpd.conf file and make sure it's not commented out (remove the # if present):
      LoadModule rewrite_module modules/mod_rewrite.so
  3. Restart Apache:

    • After making changes, restart Apache from the WAMP/XAMPP control panel.
  4. Create or Edit .htaccess File:

    • Place the .htaccess file in the root directory of your website (C:\wamp64\www\your_project or equivalent).

2. Debian

On Debian, Apache typically needs a few steps to fully support .htaccess files.

Steps:

  1. Enable .htaccess in Apache Configuration:

    • Open the Apache configuration file for the site you are working on, usually located at /etc/apache2/sites-available/000-default.conf.
    • Inside the <VirtualHost> block, change AllowOverride None to AllowOverride All for the directory you want to use:
      <Directory /var/www/html/>
          Options Indexes FollowSymLinks
          AllowOverride All
          Require all granted
      </Directory>
  2. Enable mod_rewrite:

    • Run the following commands to enable the module and restart Apache:
      sudo a2enmod rewrite
      sudo systemctl restart apache2
  3. Create or Edit .htaccess File:

    • Place your .htaccess file in the appropriate web directory (e.g., /var/www/html/).

3. openSUSE

For openSUSE, the steps are similar to Debian, with some specific differences in file locations.

Steps:

  1. Enable .htaccess in Apache Configuration:

    • Open the Apache configuration file at /etc/apache2/default-server.conf.
    • Modify the directory configuration block to allow overrides:
      <Directory "/srv/www/htdocs">
          Options Indexes FollowSymLinks
          AllowOverride All
          Require all granted
      </Directory>
  2. Enable mod_rewrite:

    • Enable the mod_rewrite module and restart Apache:
      sudo a2enmod rewrite
      sudo systemctl restart apache2
  3. Create or Edit .htaccess File:

    • Place your .htaccess file in the web directory, typically /srv/www/htdocs.

Common .htaccess Configurations:

Here are some typical rules you might want to use in your .htaccess file:


Testing Your .htaccess File

To test if your .htaccess is working, add a simple redirect to it:

Redirect 301 /test-page.html /index.html

Then, create a test-page.html in your directory. If visiting your-domain/test-page.html redirects to your home page, your .htaccess is working correctly.