Laravel and wordpress setup on IIS server
In this article, we’ll learn about Laravel and how it can be used alongside WordPress on IIS server.
Laravel, can be integrated with WordPress. This combination can enable you to manage your web application development through the WordPress and offering a more streamlined workflow.
Step 1: Put your wordpress part in laravel directory.
in first step make folder in Laravel project for wordpress part and put all wordpress part in this folder.
Step 2: Configure Web.config of Laravel.
We should to know that IIS Server read Web.config file instead of .htaccess , So we have to configure Web.config of Laravel first.
- Put Web.config file in root directory of laravel from public folder
Now,replace content of web.config with below content.
Step 3: Configure Web.config of Wordpress.
In Wordpress there is no Web.config file,so We have to create new file.
- Create new file Web.config in Wordpress root directory
Now,put below code in your newly created Web.config.