access to blocked images and PDF on ionic app
I am a noob with ionic and I'm facing a problem to access some resources (PDF + images ) stored in our server, in the folder containing this resources
I have an htaccess
that allows access to these files for some URL only (2 domains) and prevent it for the others.
So my question is: Is there a way to attribute an IP address to my ionic app in order to add it to htaccess
so I can access these files?
I have seen that I can use a proxy but it didn't work for me (maybe my configuration is not correct).
I must say that I can access to this files when I test my app on my browser ( using ionic serve ) because I have Allow-Control-Allow-Origin: * extension enabled but I can't access to these file when I test on real device (android for example)
Here is the content of htaccess file :
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://www.domain1.com [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain1.com.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain2.com [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain2.com.*$ [NC]
RewriteRule .(pdf|jpg)$ - [F]
Options -Indexes
Thanks in advance for your response.

add a comment |
I am a noob with ionic and I'm facing a problem to access some resources (PDF + images ) stored in our server, in the folder containing this resources
I have an htaccess
that allows access to these files for some URL only (2 domains) and prevent it for the others.
So my question is: Is there a way to attribute an IP address to my ionic app in order to add it to htaccess
so I can access these files?
I have seen that I can use a proxy but it didn't work for me (maybe my configuration is not correct).
I must say that I can access to this files when I test my app on my browser ( using ionic serve ) because I have Allow-Control-Allow-Origin: * extension enabled but I can't access to these file when I test on real device (android for example)
Here is the content of htaccess file :
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://www.domain1.com [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain1.com.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain2.com [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain2.com.*$ [NC]
RewriteRule .(pdf|jpg)$ - [F]
Options -Indexes
Thanks in advance for your response.

what I have found so far is to add line below on my htaccess file but the issue is that I can access to the files when I use a browser from my mobile (which I don't want to happen ) : # RewriteCond %{HTTP_USER_AGENT} !(Android|iPad|iPhone|BlackBerry|Nokia|SAMSUNG|Windows Phone)
– Hanane Kacemi
Jan 2 at 15:41
add a comment |
I am a noob with ionic and I'm facing a problem to access some resources (PDF + images ) stored in our server, in the folder containing this resources
I have an htaccess
that allows access to these files for some URL only (2 domains) and prevent it for the others.
So my question is: Is there a way to attribute an IP address to my ionic app in order to add it to htaccess
so I can access these files?
I have seen that I can use a proxy but it didn't work for me (maybe my configuration is not correct).
I must say that I can access to this files when I test my app on my browser ( using ionic serve ) because I have Allow-Control-Allow-Origin: * extension enabled but I can't access to these file when I test on real device (android for example)
Here is the content of htaccess file :
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://www.domain1.com [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain1.com.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain2.com [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain2.com.*$ [NC]
RewriteRule .(pdf|jpg)$ - [F]
Options -Indexes
Thanks in advance for your response.

I am a noob with ionic and I'm facing a problem to access some resources (PDF + images ) stored in our server, in the folder containing this resources
I have an htaccess
that allows access to these files for some URL only (2 domains) and prevent it for the others.
So my question is: Is there a way to attribute an IP address to my ionic app in order to add it to htaccess
so I can access these files?
I have seen that I can use a proxy but it didn't work for me (maybe my configuration is not correct).
I must say that I can access to this files when I test my app on my browser ( using ionic serve ) because I have Allow-Control-Allow-Origin: * extension enabled but I can't access to these file when I test on real device (android for example)
Here is the content of htaccess file :
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://www.domain1.com [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain1.com.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain2.com [NC]
RewriteCond %{HTTP_REFERER} !^http://www.domain2.com.*$ [NC]
RewriteRule .(pdf|jpg)$ - [F]
Options -Indexes
Thanks in advance for your response.


edited Jan 2 at 11:12
Hanane Kacemi
asked Jan 2 at 10:16
Hanane KacemiHanane Kacemi
138414
138414
what I have found so far is to add line below on my htaccess file but the issue is that I can access to the files when I use a browser from my mobile (which I don't want to happen ) : # RewriteCond %{HTTP_USER_AGENT} !(Android|iPad|iPhone|BlackBerry|Nokia|SAMSUNG|Windows Phone)
– Hanane Kacemi
Jan 2 at 15:41
add a comment |
what I have found so far is to add line below on my htaccess file but the issue is that I can access to the files when I use a browser from my mobile (which I don't want to happen ) : # RewriteCond %{HTTP_USER_AGENT} !(Android|iPad|iPhone|BlackBerry|Nokia|SAMSUNG|Windows Phone)
– Hanane Kacemi
Jan 2 at 15:41
what I have found so far is to add line below on my htaccess file but the issue is that I can access to the files when I use a browser from my mobile (which I don't want to happen ) : # RewriteCond %{HTTP_USER_AGENT} !(Android|iPad|iPhone|BlackBerry|Nokia|SAMSUNG|Windows Phone)
– Hanane Kacemi
Jan 2 at 15:41
what I have found so far is to add line below on my htaccess file but the issue is that I can access to the files when I use a browser from my mobile (which I don't want to happen ) : # RewriteCond %{HTTP_USER_AGENT} !(Android|iPad|iPhone|BlackBerry|Nokia|SAMSUNG|Windows Phone)
– Hanane Kacemi
Jan 2 at 15:41
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54004513%2faccess-to-blocked-images-and-pdf-on-ionic-app%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54004513%2faccess-to-blocked-images-and-pdf-on-ionic-app%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
what I have found so far is to add line below on my htaccess file but the issue is that I can access to the files when I use a browser from my mobile (which I don't want to happen ) : # RewriteCond %{HTTP_USER_AGENT} !(Android|iPad|iPhone|BlackBerry|Nokia|SAMSUNG|Windows Phone)
– Hanane Kacemi
Jan 2 at 15:41