Import products to WooCommerce by CSV page won’t open [closed]

Closed. This question is off-topic. It is not currently accepting answers. Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third party plugins and themes are off topic, they are better asked about at their developers’ support routes. Closed 4 … Read more

some url does not redirect from http to https

I am trying to solve my https redirection from all away.I follow the all solutions form stackexchange. But still in problem so I am writing here. Problem is that https redirection is working but some url not redirect. For example . http://example.com/contact not redirect on http://example.com/contact. This is my code . define( ‘WP_CACHE’, false ); … Read more

WordPress multisite htaccess redirection to new domain

RewriteCond %{HTTP_HOST} ^site.olddomain.com$ [OR] RewriteCond %{HTTP_HOST} ^www\.site.olddomain\.com$ RewriteRule ^(.*)$ https://site.newdomain.com/$1 [R=301,L] All posts URLs are redirecting successfully. But the problem is my old multisite site_id is different from the new multisite site_id. So all site.olddomain.com/wp-content/uploads/sites/7/.. is redirecting to site.newdomain.com/wp-content/uploads/7/… But the site_id at the new domain is 2, not 7. I tried this RewriteCond %{HTTP_HOST} … Read more

Alias ‘wp-content’ directory to something shorter (framework?)

I recall seeing this as a feature of a WordPress Development Framework, so I know it’s possible (can’t remember the framework). I am interested in how to condense the WordPress-generated urls to something more concise and not so “WordPressy”. I’m thinking that I would have to both update the .htaccess and add some kind of … Read more

WordPress multisite subdirectory on nginx behind reverse proxy

I can’t seem to make wordpress multisite subdirectories work behind my reverse proxy. Locally (from lan ip addresses) all works, I can access the main domain, sub-directories and all dashboards. The moment I add a reverse proxy, I cannot access the network dashboard (Redirect loop) nor the multisites subdirectories (redirects to lan ip). If I … Read more

Why does multisite bypass WordPress for wp-content, wp-admin, wp-includes and .php files?

When you set up WordPress to use multisite, you’re directed to modify your .htaccess file to use one of the following, which are outlined in the admin and the WordPress documentation: Subfolder … RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] … Subdomain … RewriteRule ^(wp-(content|admin|includes).*) $1 [L] RewriteRule ^(.*\.php)$ $1 [L] … I understand … Read more