EC-CUBE / EC-CUBE/ec-cube.github.io
$app['config']['root_urlpath']の利用についての注意記載をする
Open
Type:Guideline
- Dominant language
- HTML
- Stars
- 23
- Forks
- 50
- PR merge metrics
- No merged PRs in 30d
Description
$app['config']['root_urlpath']は、環境によって異なる。
通常、サブディレクトリにインストールした場合は、
```
/eccube/html
```
となるが、URLからhtmlを取り除いた環境では
```
/eccube/
```
となる。
そのため、html配下へのパス(/html/plugin/xxx など)を取得するために$app['config']['root_urlpath']を使用していた場合、正常に取得できない可能性があるので、使用すべきではない。
参考:
EC-CUBE本体コードでは、$app['config']['root_urlpath']はCookieのパスとして使用しているだけ。
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.