Working on local xampp install of Magento 2.4.2 on Windows 11. I'm a Magento newbie - made it past several common Windows install issues but getting stuck with how to tell Apache where WP install is located. This install is a dev site, not sample Magento install.
Wordpress is integrated via Fishpig and below are some details to be entered inside server{} of nginx.conf file per dev setup docs.
# WordPress is installed in pub/wp
location /wp/ {
index index.html index.php;
try_files $uri $uri/ /wp/index.php?q=$uri&args;
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9074;
fastcgi_index /wp/index.php;
include fastcgi.conf;
}
}
I tried that actually, but I'm using xampp & Apache not nginx for this install. I'm currently getting "WordPress doesn't appear to be installed" error at base url.
So my question is - where / how can I enter this info in Apache config? Or is there a different solution? I looked into several .htaccess files but that doesn't seem to be the right place unless I reformat the details.