I’m using Bitnami WP Multisite, on Ubuntu (AWS Lightsail).
I’ve set up the following options under the Processing tab:
Rewrite Links in source code-
wp-content/themes/twentyseventeen/,contents/ui/mytheme/
wp-includes/,inc/
Rename Exported Directories -
wp-content,contents
contents/themes,contents/ui
contents/ui/twentyseventeen,contents/ui/mytheme
wp-includes/,inc/
(basically, I copied the default examples)
In my case, the directories are being exported correctly (with the changes to .zip and S3), but the source code is untouched from its original WordPress defaults.
I think it may have something to do with the data in the WP rewrite_rules
input field being ignored because of my WP multi setup? Possibly causing a flag to skip?
The description on the rewrite_rules
input states:
URLs will be first checked to ensure they are part of this site, not an external WordPress site, which would mess up URLs of linked images, etc
So, it’s possible that I have a URL conflict because of Multi? If that’s the case, I suppose I would need to bypass the URLs being checked?
I searched the repository (https://github.com/WP2Static/static-html-output-plugin/search?q=rewrite_rules&unscoped_q=rewrite_rules) but I’m not familiar enough with this plugin to develop a starting point for debugging.
Any pointers would be appreciated.