This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* .htaccess writer CRUD class | |
* | |
* @author Lawrence Cherone | |
* @version 1.00 | |
*/ | |
class htaccessCRUD | |
{ | |
public $file; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# htaccess starter template | |
# v20121004 htaccessbook.com/changelog | |
# Enable mod_rewrite | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
</IfModule> | |
# Enable symbolic links | |
Options +FollowSymLinks |