Apply hash tag comments ("#") to .htaccess files
Does anyone have a solution to easily comment in/out lines of code in .htaccess files?
Example:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ -
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
Change to:
# RewriteEngine On
# RewriteBase /
# RewriteRule ^index\.php$ -
# RewriteCond %{REQUEST_FILENAME} !-f
# RewriteCond %{REQUEST_FILENAME} !-d
# RewriteRule . /index.php
