diff --git a/code/staticpublisher/CachedPHPPage.tmpl b/code/staticpublisher/CachedPHPPage.tmpl deleted file mode 100644 index 2fe875b6..00000000 --- a/code/staticpublisher/CachedPHPPage.tmpl +++ /dev/null @@ -1,28 +0,0 @@ - 0) { - header("Cache-Control: max-age=" . MAX_AGE); - header("Pragma:"); -} else { - header("Cache-Control: no-cache, max-age=0, must-revalidate"); -} - -header("Expires: " . gmdate('D, d M Y H:i:s', time() + MAX_AGE) . ' GMT'); -header("Last-modified: " . gmdate('D, d M Y H:i:s', strtotime(LAST_MODIFIED)) . ' GMT'); - -if(isset($_SERVER['HTTP_IF_MODIFIED_SINCE'])) { - if(strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) >= strtotime(LAST_MODIFIED)) { - header("Last-modified: " . gmdate('D, d M Y H:i:s', strtotime(LAST_MODIFIED)) . ' GMT', true, 304); - exit; - } -} - -?> -**CONTENT** diff --git a/code/staticpublisher/CachedPHPRedirection.tmpl b/code/staticpublisher/CachedPHPRedirection.tmpl deleted file mode 100644 index 755fcddd..00000000 --- a/code/staticpublisher/CachedPHPRedirection.tmpl +++ /dev/null @@ -1,20 +0,0 @@ - 0) { - header("Cache-Control: max-age=" . MAX_AGE); - header("Pragma:"); -} else { - header("Cache-Control: no-cache, max-age=0, must-revalidate"); -} - -header("Expires: " . gmdate('D, d M Y H:i:s', time() + MAX_AGE) . ' GMT'); -header("Location: " . DESTINATION, true, 301); - -?> diff --git a/code/staticpublisher/htaccess_example_rsyncmultiservers b/code/staticpublisher/htaccess_example_rsyncmultiservers deleted file mode 100644 index b7aefcfe..00000000 --- a/code/staticpublisher/htaccess_example_rsyncmultiservers +++ /dev/null @@ -1,39 +0,0 @@ -### SILVERSTRIPE START ### -RewriteEngine On - -## CONFIG FOR DEV ENVIRONMENTS - -# Cached content - **sitedir** subdirectory -RewriteCond %{REQUEST_METHOD} ^GET$ -RewriteCond %{QUERY_STRING} ^$ -RewriteCond %{REQUEST_URI} ^/**sitedir**/(.*)$ -RewriteCond %{REQUEST_URI} /**sitedir**/(.*[^/])/?$ -RewriteCond %{DOCUMENT_ROOT}/**sitedir**/cache/%1.html -f -RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule .* /**sitedir**/cache/%1.html [L] - -# Cached content - homepage -RewriteCond %{REQUEST_METHOD} ^GET$ -RewriteCond %{QUERY_STRING} ^$ -RewriteCond %{REQUEST_URI} ^/**sitedir**/?$ -RewriteCond /**sitedir**/cache/index.html -f -RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule .* /**sitedir**/cache/index.html [L] - -## CONFIG FOR TEST/LIVE ENVIRONMENTS - -# Cached content - live webserver -RewriteCond %{REQUEST_METHOD} ^GET$ -RewriteCond %{QUERY_STRING} ^$ -RewriteCond %{REQUEST_URI} /(.*[^/])/?$ -RewriteCond %{DOCUMENT_ROOT}/cache/%1.html -f -RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule .* /cache/%1.html [L] - -# Cached content - homepage -RewriteCond %{REQUEST_METHOD} ^GET$ -RewriteCond %{QUERY_STRING} ^$ -RewriteCond %{REQUEST_URI} ^/?$ -RewriteCond %{DOCUMENT_ROOT}/cache/index.html -f -RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule .* /cache/index.html [L] \ No newline at end of file diff --git a/code/staticpublisher/htaccess_example_rsyncsingleserver b/code/staticpublisher/htaccess_example_rsyncsingleserver deleted file mode 100644 index 8a22bd22..00000000 --- a/code/staticpublisher/htaccess_example_rsyncsingleserver +++ /dev/null @@ -1,48 +0,0 @@ -### SILVERSTRIPE START ### -RewriteEngine On - -## CONFIG FOR DEV ENVIRONMENTS - -# Cached content - **sitedir** subdirectory -RewriteCond %{REQUEST_METHOD} ^GET$ -RewriteCond %{QUERY_STRING} ^$ -RewriteCond %{REQUEST_URI} ^/**sitedir**/(.*)$ -RewriteCond %{REQUEST_URI} /**sitedir**/(.*[^/])/?$ -RewriteCond %{DOCUMENT_ROOT}/**sitedir**/cache/%1.html -f -RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule .* /**sitedir**/cache/%1.html [L] - -# Cached content - homepage -RewriteCond %{REQUEST_METHOD} ^GET$ -RewriteCond %{QUERY_STRING} ^$ -RewriteCond %{REQUEST_URI} ^/**sitedir**/?$ -RewriteCond /**sitedir**/cache/index.html -f -RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule .* /**sitedir**/cache/index.html [L] - -## CONFIG FOR TEST/LIVE ENVIRONMENTS - -# Cached content - live webserver -RewriteCond %{REQUEST_METHOD} ^GET$ -RewriteCond %{QUERY_STRING} ^$ -RewriteCond %{REQUEST_URI} /(.*[^/])/?$ -RewriteCond %{DOCUMENT_ROOT}/cache/%1.html -f -RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule .* /cache/%1.html [L] - -# Cached content - homepage -RewriteCond %{REQUEST_METHOD} ^GET$ -RewriteCond %{QUERY_STRING} ^$ -RewriteCond %{REQUEST_URI} ^/?$ -RewriteCond %{DOCUMENT_ROOT}/cache/index.html -f -RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule .* /cache/index.html [L] - -## DYNAMIC CONFIG - -# Dynamic content -RewriteCond %{REQUEST_URI} !(\.gif)|(\.jpg)|(\.png)|(\.css)|(\.js)|(\.php)$ -RewriteCond %{REQUEST_URI} ^(.*)$ -RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule .* framework/main.php?url=%1&%{QUERY_STRING} [L] -### SILVERSTRIPE END ### diff --git a/code/staticpublisher/htaccess_example_rsyncwithphp b/code/staticpublisher/htaccess_example_rsyncwithphp deleted file mode 100644 index 2cc4943e..00000000 --- a/code/staticpublisher/htaccess_example_rsyncwithphp +++ /dev/null @@ -1,39 +0,0 @@ -### SILVERSTRIPE START ### -RewriteEngine On - -## CONFIG FOR DEV ENVIRONMENTS - -# Cached content - **sitedir** subdirectory -RewriteCond %{REQUEST_METHOD} ^GET$ -RewriteCond %{QUERY_STRING} ^$ -RewriteCond %{REQUEST_URI} ^/**sitedir**/(.*)$ -RewriteCond %{REQUEST_URI} /**sitedir**/(.*[^/])/?$ -RewriteCond %{DOCUMENT_ROOT}/**sitedir**/cache/%1.php -f -RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule .* /**sitedir**/cache/%1.php [L] - -# Cached content - homepage -RewriteCond %{REQUEST_METHOD} ^GET$ -RewriteCond %{QUERY_STRING} ^$ -RewriteCond %{REQUEST_URI} ^/**sitedir**/?$ -RewriteCond /**sitedir**/cache/index.php -f -RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule .* /**sitedir**/cache/index.php [L] - -## CONFIG FOR TEST/LIVE ENVIRONMENTS - -# Cached content - live webserver -RewriteCond %{REQUEST_METHOD} ^GET$ -RewriteCond %{QUERY_STRING} ^$ -RewriteCond %{REQUEST_URI} /(.*[^/])/?$ -RewriteCond %{DOCUMENT_ROOT}/cache/%1.php -f -RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule .* /cache/%1.php [L] - -# Cached content - homepage -RewriteCond %{REQUEST_METHOD} ^GET$ -RewriteCond %{QUERY_STRING} ^$ -RewriteCond %{REQUEST_URI} ^/?$ -RewriteCond %{DOCUMENT_ROOT}/cache/index.php -f -RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule .* /cache/index.php [L] \ No newline at end of file