Skip to content

Commit 6a82335

Browse files
committed
fix url scheme, add redis test, rename mysql to database, add htaccess wp rewrite rule for future tests
1 parent fa43926 commit 6a82335

File tree

3 files changed

+265
-50
lines changed

3 files changed

+265
-50
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
wordpress
44
adminer.php
55
error_log.txt
6+
config

.htaccess

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# BEGIN WordPress
2+
<IfModule mod_rewrite.c>
3+
RewriteEngine On
4+
RewriteBase /
5+
RewriteRule ^phpwpinfo\.php$ - [L]
6+
RewriteCond %{REQUEST_FILENAME} !-f
7+
RewriteCond %{REQUEST_FILENAME} !-d
8+
RewriteRule . /phpwpinfo.php [L]
9+
</IfModule>
10+
# END WordPress
11+
112
# BEGIN PHP WordPress Info
213
<IfModule mod_env.c>
314
SetEnv http_mod_env on

0 commit comments

Comments
 (0)