質問編集履歴
4
追記
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -37,4 +37,7 @@
|
|
|
37
37
|
apahceで読み込んでるモジュール(mod_rewrite 有)
|
|
38
38
|
```
|
|
39
39
|
core mod_so http_core mod_access_compat mod_actions mod_alias mod_allowmethods mod_auth_basic mod_auth_digest mod_authn_anon mod_authn_core mod_authn_dbd mod_authn_dbm mod_authn_file mod_authn_socache mod_authz_core mod_authz_dbd mod_authz_dbm mod_authz_groupfile mod_authz_host mod_authz_owner mod_authz_user mod_autoindex mod_cache mod_cache_disk mod_data mod_dbd mod_deflate mod_dir mod_dumpio mod_echo mod_env mod_expires mod_ext_filter mod_filter mod_headers mod_include mod_info mod_log_config mod_logio mod_mime_magic mod_mime mod_negotiation mod_remoteip mod_reqtimeout mod_rewrite mod_setenvif mod_slotmem_plain mod_slotmem_shm mod_socache_dbm mod_socache_memcache mod_socache_shmcb mod_status mod_substitute mod_suexec mod_unique_id mod_unixd mod_userdir mod_version mod_vhost_alias mod_dav mod_dav_fs mod_dav_lock mod_lua prefork mod_proxy mod_lbmethod_bybusyness mod_lbmethod_byrequests mod_lbmethod_bytraffic mod_lbmethod_heartbeat mod_proxy_ajp mod_proxy_balancer mod_proxy_connect mod_proxy_express mod_proxy_fcgi mod_proxy_fdpass mod_proxy_ftp mod_proxy_http mod_proxy_scgi mod_proxy_wstunnel mod_systemd mod_cgi mod_php7
|
|
40
|
-
```
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### 参考サイト
|
|
43
|
+
[Apacheでドキュメントルート以外のディレクトリを公開する方法](https://i-think-it.net/apache-documentroot-other-publishing/)
|
3
誤字
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
`/hogehogege/aaa`(web.phpにあるrouting)だと、
|
|
15
15
|
```
|
|
16
16
|
Not Found
|
|
17
|
-
The requested URL /
|
|
17
|
+
The requested URL /var/www/sampleapp/public/index.php was not found on this server.
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
となってしまう状態です。
|
2
誤字
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
```
|
|
29
29
|
Alias /hogehoge "/var/www/sampleapp/public"
|
|
30
30
|
<Directory "/var/www/sampleapp/public">
|
|
31
|
-
AllowOverride
|
|
31
|
+
AllowOverride All
|
|
32
32
|
Require all granted
|
|
33
33
|
Allow from all
|
|
34
34
|
</Directory>
|
1
タイトルの変更
title
CHANGED
|
@@ -1,1 +1,1 @@
|
|
|
1
|
-
ドキュメントルート以外のディレクトリを公開したい
|
|
1
|
+
laravel,apacheでドキュメントルート以外のディレクトリを公開したい
|
body
CHANGED
|
File without changes
|