Added mod_rewrite for nginx module

This commit is contained in:
alexey
2026-03-23 01:15:59 +03:00
commit 0d2c6277e1
124 changed files with 11079 additions and 0 deletions

26
cms/simple/show.html Normal file
View File

@@ -0,0 +1,26 @@
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<title>Show - Тест mod_rewrite для nginx</title>
</head>
<body>
<h1>show.html</h1>
<p>Вы попали на show.html.</p>
<hr />
<ul>
<li><a href="index.html">На главную (index.html)</a></li>
<li><a href="redirect.html">Redirect - перенаправляет сюда</a></li>
<li><a href="stop.html">Stop - заблокированная</a></li>
</ul>
<hr />
<p>
<em><strong style="color: green;">Показано вместо redirect.html!</strong></em>
</p>
<p>
Это страница-назначение для правила <code>RewriteRule ^redirect\.html$ show.html [L]</code>.
</p>
</body>
</html>