Apache Hypertext Transfer Protocol Server Access: Difference between revisions

From NikkiWiki
Jump to navigation Jump to search
No edit summary
 
Line 28: Line 28:
# https://www.nicolesharp.net/
# https://www.nicolesharp.net/
</syntaxhighlight>
</syntaxhighlight>
== references ==
# [https://httpd.apache.org/ <cite>Apache HTTP Server Project</cite>]


[[category:webdevelopment]]
[[category:webdevelopment]]

Latest revision as of 2026-04-09T00:12:48

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

HTTP redirects

Wikimedia MediaWiki shortlinks

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.
# 2026-04-09 Nicole Sharp
# https://www.nicolesharp.net/

references

  1. Apache HTTP Server Project