質問編集履歴

5

誤字の修正

2021/10/10 22:34

投稿

pqpq
pqpq

スコア0

test CHANGED
File without changes
test CHANGED
@@ -50,9 +50,7 @@
50
50
 
51
51
  RewriteBase /sub1
52
52
 
53
- RewriteRule ^(.*)$ sub1/$1
53
+ RewriteRule ^(.*)$ sub1/$1 [L]
54
-
55
- RewriteRule ^index.php$ - [L]
56
54
 
57
55
  </IfModule>
58
56
 

4

追加

2021/10/10 22:34

投稿

pqpq
pqpq

スコア0

test CHANGED
File without changes
test CHANGED
@@ -36,30 +36,50 @@
36
36
 
37
37
 
38
38
 
39
- 以下で試したところ動きませんでした。
39
+ 以下で試したところ
40
-
41
- https://example.com でアクセスすると、~/public_html/example.com/のWPが動作してるようです。
42
40
 
43
41
 
44
42
 
45
43
  ```ここに言語名を入力
46
44
 
47
- <IfModule mod_rewrite.c>
45
+ <IfModule mod_rewrite.c>
48
46
 
49
47
  RewriteEngine On
50
48
 
49
+ RewriteCond %{REQUEST_URI} !^/dev/
50
+
51
51
  RewriteBase /sub1
52
52
 
53
+ RewriteRule ^(.*)$ sub1/$1
54
+
53
- RewriteRule ^sub1/index.php$ - [L]
55
+ RewriteRule ^index.php$ - [L]
56
+
57
+ </IfModule>
58
+
59
+ <IfModule mod_rewrite.c>
60
+
61
+ RewriteEngine On
62
+
63
+ RewriteCond %{REQUEST_URI} ^/dev/
64
+
65
+ RewriteBase /
66
+
67
+ RewriteRule ^/dev/(.*)$ $1
68
+
69
+ RewriteRule ^index.php$ - [L]
54
70
 
55
71
  RewriteCond %{REQUEST_FILENAME} !-f
56
72
 
57
73
  RewriteCond %{REQUEST_FILENAME} !-d
58
74
 
59
- RewriteRule . /sub1/index.php [L]
75
+ RewriteRule . index.php [L]
60
76
 
61
77
  </IfModule>
62
78
 
79
+ ```
63
80
 
81
+ https://example.com/ で ~/public_html/example.com/sub1 ‥‥ OK
64
82
 
83
+ https://example.com/dev で ~/public_html/example.com/sub1 のWPでPage Not Found (Page /dev がない) ‥‥ NG
84
+
65
- ```
85
+ となってうまくいきません。

3

誤字の修正

2021/10/10 12:02

投稿

pqpq
pqpq

スコア0

test CHANGED
File without changes
test CHANGED
@@ -28,7 +28,7 @@
28
28
 
29
29
 
30
30
 
31
- どう記述して良いのかわかりません。どうすれば良いでしょうか?
31
+ この場合、.htaccess をどう記述すれば良いでしょうか?
32
32
 
33
33
 
34
34
 

2

誤字の修正

2021/10/10 04:53

投稿

pqpq
pqpq

スコア0

test CHANGED
File without changes
test CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  レンタルサーバーの実際のフォルダでWordPress(WP)がインストールされており以下のとおりです。
8
8
 
9
- ~/public_html/example.com/ <- https://example.com のドキュメントルートWPがインストール
9
+ ~/public_html/example.com/ <- https://example.com のドキュメントルートWPがインストール
10
10
 
11
11
  ~/public_html/example.com/sub1 <- WPがインストール
12
12
 

1

誤字の修正

2021/10/10 04:34

投稿

pqpq
pqpq

スコア0

test CHANGED
File without changes
test CHANGED
@@ -50,7 +50,7 @@
50
50
 
51
51
  RewriteBase /sub1
52
52
 
53
- RewriteRule ^sub/index.php$ - [L]
53
+ RewriteRule ^sub1/index.php$ - [L]
54
54
 
55
55
  RewriteCond %{REQUEST_FILENAME} !-f
56
56