
よろしくお願いいたします。
###前提・実現したいこと
KUSANAGI for ConoHa にて、Nginx で WordPress と FuelPHP を以下のURLで動かしたいです。
URL | |
---|---|
WordPress | http://example.jp |
FuelPHP | http://example.jp/admin/{コントローラ名} |
* 通常/adminとするとwp-adminに飛ぶと思うのですが、そうせずFuelPHP側が表示されるように
bash
1# ディレクトリ 2/ 3└ home/ 4 └ kusanagi/ 5 └ www/ 6 └ wp-config.php 7 └ DocumentRoot/ 8 └ wp-admin/ 9 └ wp-content/ 10 ... 11 └ admin/ 12 └ fuel/ 13 └ public/ 14 └ index.php
###発生している問題・エラーメッセージ
Nginxのconfファイルがうまく書けず
- http://example.jp/adminにアクセスしても、FuelPHPのwelcomeがでない
- http://example.jp/admin/hogeにアクセスすると、WordPresのPage not foundが出る
###該当のソースコード
bash
1# /etc/nginx/conf.d/www_http.conf 2 3server { 4 listen 80; 5 server_name example.jp; 6 access_log /home/kusanagi/www/log/nginx/access.log main; 7 error_log /home/kusanagi/www/log/nginx/error.log warn; 8 9 # rewrite ^(.*)$ https://example.jp$request_uri permanent; # SSL ONLY 10 charset UTF-8; 11 client_max_body_size 16M; 12 root /home/kusanagi/www/DocumentRoot; 13 index index.php index.html index.htm; 14 15 location /admin { 16 alias /home/kusanagi/www/admin/public; 17 try_files $uri $uri/ /index.php$is_args$args; 18 } 19 20 location ~ ^/admin/.+\.php$ { 21 fastcgi_pass 127.0.0.1:9000; 22 fastcgi_index index.php; 23 include fastcgi_params; 24 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 25 fastcgi_param FUEL_ENV "production"; 26 } 27 28 rewrite /wp-admin$ $scheme://$host$uri/ permanent; 29 30 location / { 31 try_files $uri $uri/ /index.php?$args; 32 } 33...
bash
1# /home/kusanagi/www/DocumentRoot/.htaccess 2 3<Files ~ "^\.ht"> 4 Deny from all 5</Files> 6<Files wp-login.php> 7 Order deny,allow 8 Deny from all 9 Allow from all 10 #Allow from 127.0.0.1 11 AuthType Basic 12 AuthName "ENTER YOUR NAME & PASSWORD TO LOGIN" 13 AuthUserFile /home/kusanagi/.htpasswd 14 Require valid-user 15 Satisfy any 16</Files> 17 18<IfModule mod_rewrite.c> 19 RewriteEngine On 20 RewriteBase / 21 RewriteRule ^index\.php$ - [L] 22 RewriteCond %{REQUEST_URI} !\.(gif|css|js|swf|jpeg|jpg|jpe|png|ico|swd|pdf|svg|eot|ttf|woff) $ 23 RewriteCond %{REQUEST_FILENAME} !-f 24 RewriteCond %{REQUEST_FILENAME} !-d 25 RewriteRule . /index.php [L] 26</IfModule>
bash
1# /home/kusanagi/www/admin/public/.htaccess 2 3 # Multiple Environment config, set this to development, staging or production 4 SetEnv FUEL_ENV development 5 # SetEnv FUEL_ENV production 6 7 <IfModule mod_rewrite.c> 8 9 # RewriteEngine を起動 10 RewriteEngine on 11 12 # NOTICE: If you get a 404 play with combinations of the following commented out lines 13 #AllowOverride All 14 #RewriteBase /wherever/fuel/is 15 RewriteBase /admin 16 17 # Make sure directory listing is disabled 18 # Options +FollowSymLinks -Indexes 19 20 # Restrict your site to only one domain 21 # !important USE ONLY ONE OPTION 22 23 # Option 1: To rewrite "www.domain.com -> domain.com" uncomment the following lines. 24 #RewriteCond %{HTTPS} !=on 25 #RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC] 26 #RewriteRule ^(.*)$ http://%1/$1 [R=301,L] 27 28 # Option 2: To rewrite "domain.com -> www.domain.com" uncomment the following lines. 29 #RewriteCond %{HTTPS} !=on 30 #RewriteCond %{HTTP_HOST} !^www\..+$ [NC] 31 #RewriteCond %{HTTP_HOST} (.+)$ [NC] 32 #RewriteRule ^(.*)$ http://www.%1/$1 [R=301,L] 33 34 # Remove index.php from URL 35 RewriteCond %{HTTP:X-Requested-With} !^XMLHttpRequest$ 36 RewriteCond %{THE_REQUEST} ^[^/]*/index\.php [NC] 37 RewriteRule ^index\.php(.*)$ $1 [R=301,NS,L] 38 39 DirectorySlash Off 40 41 RedirectMatch permanent /admin$ /admin/login 42 RedirectMatch permanent /admin/$ /admin/login 43 44 # make HTTP Basic Authentication work on php-fcgi installs 45 <IfModule mod_fcgid.c> 46 RewriteCond %{HTTP:Authorization} . 47 RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 48 </IfModule> 49 50 # Send request via index.php if not a real file or directory 51 RewriteCond %{REQUEST_FILENAME} !-f 52 RewriteCond %{REQUEST_FILENAME} !-d 53 54 # deal with php-fcgi first 55 <IfModule mod_fcgid.c> 56 RewriteRule ^(.*)$ index.php?/$1 [QSA,L] 57 </IfModule> 58 59 # no php-fcgi, check for sapi and fpm 60 <IfModule !mod_fcgid.c> 61 62 # for PHP5 sapi installations 63 <IfModule mod_php5.c> 64 RewriteRule ^(.*)$ index.php/$1 [L] 65 </IfModule> 66 67 <IfModule !mod_php5.c> 68 69 # for PHP7 sapi installations 70 <IfModule mod_php7.c> 71 RewriteRule ^(.*)$ index.php/$1 [L] 72 </IfModule> 73 74 # for fpm installations 75 <IfModule !mod_php7.c> 76 RewriteRule ^(.*)$ index.php?/$1 [QSA,L] 77 </IfModule> 78 79 </IfModule> 80 81 </IfModule> 82 83 </IfModule>
###補足情報(言語/FW/ツール等のバージョンなど)
バージョン | |
---|---|
Nginx | nginx/1.11.10 |
PHP | 5.6.30 (php7にしたいが、kusanagi php7してもなぜか切り替わらない) |
WordPress | 4.7.3 |
FuelPHP | 1.8 |
回答1件
あなたの回答
tips
プレビュー