回答編集履歴
1
追記
test
CHANGED
@@ -15,3 +15,15 @@
|
|
15
15
|
ドキュメントルート直下に、別の`css`や`js`ディレクトリがあるとそれらも全部リライトするので、
|
16
16
|
|
17
17
|
その場合はリファラーを見るなどが必要です。
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
```Apache
|
22
|
+
|
23
|
+
RewriteEngine on
|
24
|
+
|
25
|
+
RewriteCond %{HTTP_REFERER} ^https://example.com/test/sample/
|
26
|
+
|
27
|
+
RewriteRule ^((css|js)/.*) /test/sample/$1
|
28
|
+
|
29
|
+
```
|