Skip to content

Instantly share code, notes, and snippets.

View TheDefinitionist's full-sized avatar

Thielicious TheDefinitionist

View GitHub Profile
@TheDefinitionist
TheDefinitionist / htaccessCRUD.class.php
Created October 21, 2017 20:35 — forked from lcherone/htaccessCRUD.class.php
PHP .htaccess CRUD class
<?php
/**
* .htaccess writer CRUD class
*
* @author Lawrence Cherone
* @version 1.00
*/
class htaccessCRUD
{
public $file;
@TheDefinitionist
TheDefinitionist / htaccess
Created October 21, 2017 12:27 — forked from philsinatra/htaccess
Starter htaccess file
# htaccess starter template
# v20121004 htaccessbook.com/changelog
# Enable mod_rewrite
<IfModule mod_rewrite.c>
RewriteEngine On
</IfModule>
# Enable symbolic links
Options +FollowSymLinks