You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RewriteEngineOn#Index PageRewriteCond%{THE_REQUEST}^(GET|HEAD)RewriteCond%{DOCUMENT_ROOT}/cached_pages/index.html-fRewriteRule^/$/cached_pages/index.html [QSA]
# Other PagesRewriteCond%{THE_REQUEST}^(GET|HEAD)RewriteCond%{REQUEST_URI}^([^.]+)/?$RewriteCond%{DOCUMENT_ROOT}/cached_pages/%1.html-fRewriteRule^([^.]+)$/cached_pages/$1.html [QSA]
NGINX
# Index HTML Filesif(-f $document_root/cached_pages/$uri/index.html){rewrite(.*) /cached_pages/$1/index.html break;}# Other HTML Filesif(-f $document_root/cached_pages/$uri.html){rewrite(.*) /cached_pages/$1.html break;}# Allif(-f $document_root/cached_pages/$uri){rewrite(.*) /cached_pages/$1break;}