HTACCESS

From NikkiWiki
Revision as of 2026-04-10T13:57:23 by Nicole Sharp (talk | contribs)
Jump to navigation Jump to search

Resources for configuring Apache Hypertext Transfer Protocol (HTTP) Server Access (.htaccess) files.

intro

  1. DreamHost Knowledge Base: "HTACCESS Overview"
  2. Apache HTTP Server Project Documentation: "HTACCESS Files"

redirects

  1. DreamHost Knowledge Base: "How Can I Redirect and Rewrite my Uniform Resource Locators (URLs) with an HTACCESS File?"
  2. Wikipedia: "HTTP Status Codes"
  3. Mozilla Developer Network: "HTTP Response Status Codes"
  4. Internet Engineering Task Force (IETF) HTTP Working Group: "Internet Standard 97 (HTTP Semantics: Overview of Status Codes)"

MediaWiki shortlinks

  1. Wikimedia MediaWiki: "Apache Short URL"

HTACCESS for Nicole Sharp’s Website

RewriteEngine On
RewriteRule ^/?wiki(/.*)?$ %{DOCUMENT_ROOT}/w/index.php [L]
RewriteRule ^/*$ %{DOCUMENT_ROOT}/w/index.php [L]
# https://www.mediawiki.org/wiki/Manual:Short_URL/Apache#Setting_up_the_rewrite_rules

# Apache Hypertext Transfer Protocol Server Access (HTACCESS) for Nicole Sharp's Website.
# Copyright (C) 2026-04-09 Nicole Sharp
# https://www.nicolesharp.net/
# Content in this file is available under the Creative Commons Attribution-ShareAlike (CC BY-SA) 4.0 International Public License.
# https://www.creativecommons.org/licenses/by-sa/4.0/

references

  1. Wikibooks: "Apache HTTP Server"
  2. Apache HTTP Server Project Documentation