HTACCESS: Difference between revisions

From NikkiWiki
Jump to navigation Jump to search
m Nicole Sharp moved page HTACCESS to Apache Hypertext Transfer Protocol Access over redirect
No edit summary
Line 1: Line 1:
Resources for configuring Apache Hypertext Transfer Protocol (HTTP) Access (<code>.htaccess</code>) files.
Resources for configuring Apache Hypertext Transfer Protocol (HTTP) Server Access (<code>.htaccess</code>) files.


* [https://help.dreamhost.com/hc/articles/216456227/ <cite>DreamHost Knowledge Base</cite>: "HTACCESS Overview"]
* [https://help.dreamhost.com/hc/articles/216456227/ <cite>DreamHost Knowledge Base</cite>: "HTACCESS Overview"]
Line 24: Line 24:
# https://www.mediawiki.org/wiki/Manual:Short_URL/Apache#Setting_up_the_rewrite_rules
# https://www.mediawiki.org/wiki/Manual:Short_URL/Apache#Setting_up_the_rewrite_rules


# Apache Hypertext Transfer Protocol Access (HTACCESS) for Nicole Sharp’s Website.
# Apache Hypertext Transfer Protocol Server Access (HTACCESS) for Nicole Sharp’s Website.
# 2026-04-08 Nicole Sharp
# 2026-04-09 Nicole Sharp
# https://www.nicolesharp.net/
# https://www.nicolesharp.net/
</syntaxhighlight>
</syntaxhighlight>


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

Revision as of 2026-04-09T00:06:03

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/