Booyoun-Kim commented on issue #140:
URL:
https://github.com/apache/cordova-plugin-wkwebview-engine/issues/140#issuecomment-723415832
I used @gasci 's solution and it worked!
This is my folder structure.
```
-en
--index.html
-ko
--index.html
```
It failed to move en/index.html to ko/index.html. I created a simple html
page in www folder.
```
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="refresh" content="0; url=./en/index.html" />
<title>Main Page</title>
</head>
<body>
</body>
</html>
```
```
index.html
-en
--index.html
-ko
--index.html
```
Then I changed a config.xml. <content src="en/index.html" /> to <content
src="index.html" />
```
<platform name="ios">
<content src="index.html" />
</platform>
```
The error, "WebPageProxy::Ignoring request to load this main resource
because it is outside the sandbox" is gone. Worked fine.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]