我正在开发Laravel 5.2中的Web应用程序。我有现有的WordPress网站。所以,我想将Laravel与WordPress集成。 WordPress应用程序有静态页面。我在根目录中有两个单独的Laravel和WordPress目录。
我想将wpApp作为默认应用。因此,当用户单击登录按钮时,用户将被重定向到laraApp。我想要www.example.com上的wpApp和www.example.com/laraApp上的laraApp。我有运行nginx的web服务器。那么我的nginx配置文件应该是什么?
当前的nginx配置文件是:
server {
listen 80;
root /var/www/root/wpApp;
index index.php index.html index.htm;
server_name www.example.com;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
# rewrite rules for laravel routes
location /laraApp {
rewrite ^/laraApp/(.*)$ /laraApp/public/index.php?$1 last;
}
location ~ \.php$ {
try_files $uri /index.php =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
我可以使用网址访问我的Laravel应用www.example.com/laraApp/public/ 我想使用www.example.com/laraApp访问它。
感谢。
答案 0 :(得分:0)
如果每个应用程序的基URI没有重叠,则配置会更简单。但鉴于您的问题的限制,您必须为配置中的每个应用程序的PHP部分使用两个不同的文档根。
当您将一个应用程序放在/
中时,另一个应用程序通过使用嵌套的位置块保持独立。 注意使用^~
修饰符来阻止第一个PHP块处理Laravel请求。
index index.php index.html index.htm;
root /var/www/root/wpApp;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
try_files $uri /index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
location ^~ /laraApp {
rewrite ^/laraApp(.*)$ /laraApp/public$1 last;
}
location ^~ /laraApp/public {
root /var/www/root;
try_files $uri $uri/ /laraApp/public/index.php?$query_string;
location ~ \.php$ {
try_files $uri /laraApp/public/index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
}
我现在离开了我的测试系统,所以上面没有经过语法检查或测试。