.htaccess in subdirectory of default apache2 directory
I have apache2 installed and running on my computer, and I have a folder in
/var/www/html/my-site
That I want to enable
Header set Access-Control-Allow-Origin "*"
So far I put a .htaccess file in the my-site folder, with
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Credentials true
</IfModule>
But I'm a little unsure where to enable .htaccess for the directory. I made sure the apache2 header module is loaded, and I put a new directory listing in my apache2.conf file as such (unsure if that will work?), which still does not make it work:
<Directory /var/www/html/my-site>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
I don't want to mess around with adding a new site and possibly doing reverse proxy, so I just wanted to be able to make this site work. Is it possible, and am I doing something wrong here?
Finally, I'm trying to use the javascript lib axios and run a request cross domain, but I get the error which is the reason why I'm doing this:
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://sitethatisdesired.com. (Reason: CORS header ‘Access-Control-Allow-Origin’ missing)
apache2
|
show 1 more comment
I have apache2 installed and running on my computer, and I have a folder in
/var/www/html/my-site
That I want to enable
Header set Access-Control-Allow-Origin "*"
So far I put a .htaccess file in the my-site folder, with
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Credentials true
</IfModule>
But I'm a little unsure where to enable .htaccess for the directory. I made sure the apache2 header module is loaded, and I put a new directory listing in my apache2.conf file as such (unsure if that will work?), which still does not make it work:
<Directory /var/www/html/my-site>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
I don't want to mess around with adding a new site and possibly doing reverse proxy, so I just wanted to be able to make this site work. Is it possible, and am I doing something wrong here?
Finally, I'm trying to use the javascript lib axios and run a request cross domain, but I get the error which is the reason why I'm doing this:
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://sitethatisdesired.com. (Reason: CORS header ‘Access-Control-Allow-Origin’ missing)
apache2
I'm not sure if the "IfModule" works in htaccess. Put theHeader set Access-Control-Allow-Origin "*"
in your vhost.
– Spirit
Nov 19 '18 at 15:11
Excuse my ignorance, but where in which file would that be exactly?
– simernes
Nov 19 '18 at 15:14
The same file in which you put theDirectory
. And Restart/reload after changes
– Spirit
Nov 19 '18 at 15:15
That's the main apache2.conf file though, and I would prefer not to enable access control for * from everywhere, rather just for that specific sub directory. I tried to remove "IfModule" from the .htaccess and just leave the Header lines, but still that didn't work. Would there be a simple way to check if .htaccess is read properly?
– simernes
Nov 19 '18 at 15:20
You can add custom vhost files. Normally in/etc/apache2/sites-available/
and after thata2ensite enable myvhost.con
and restart
– Spirit
Nov 19 '18 at 15:22
|
show 1 more comment
I have apache2 installed and running on my computer, and I have a folder in
/var/www/html/my-site
That I want to enable
Header set Access-Control-Allow-Origin "*"
So far I put a .htaccess file in the my-site folder, with
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Credentials true
</IfModule>
But I'm a little unsure where to enable .htaccess for the directory. I made sure the apache2 header module is loaded, and I put a new directory listing in my apache2.conf file as such (unsure if that will work?), which still does not make it work:
<Directory /var/www/html/my-site>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
I don't want to mess around with adding a new site and possibly doing reverse proxy, so I just wanted to be able to make this site work. Is it possible, and am I doing something wrong here?
Finally, I'm trying to use the javascript lib axios and run a request cross domain, but I get the error which is the reason why I'm doing this:
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://sitethatisdesired.com. (Reason: CORS header ‘Access-Control-Allow-Origin’ missing)
apache2
I have apache2 installed and running on my computer, and I have a folder in
/var/www/html/my-site
That I want to enable
Header set Access-Control-Allow-Origin "*"
So far I put a .htaccess file in the my-site folder, with
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Credentials true
</IfModule>
But I'm a little unsure where to enable .htaccess for the directory. I made sure the apache2 header module is loaded, and I put a new directory listing in my apache2.conf file as such (unsure if that will work?), which still does not make it work:
<Directory /var/www/html/my-site>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
I don't want to mess around with adding a new site and possibly doing reverse proxy, so I just wanted to be able to make this site work. Is it possible, and am I doing something wrong here?
Finally, I'm trying to use the javascript lib axios and run a request cross domain, but I get the error which is the reason why I'm doing this:
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://sitethatisdesired.com. (Reason: CORS header ‘Access-Control-Allow-Origin’ missing)
apache2
apache2
edited Nov 19 '18 at 14:59
Spirit
797
797
asked Nov 19 '18 at 14:50
simernes
238314
238314
I'm not sure if the "IfModule" works in htaccess. Put theHeader set Access-Control-Allow-Origin "*"
in your vhost.
– Spirit
Nov 19 '18 at 15:11
Excuse my ignorance, but where in which file would that be exactly?
– simernes
Nov 19 '18 at 15:14
The same file in which you put theDirectory
. And Restart/reload after changes
– Spirit
Nov 19 '18 at 15:15
That's the main apache2.conf file though, and I would prefer not to enable access control for * from everywhere, rather just for that specific sub directory. I tried to remove "IfModule" from the .htaccess and just leave the Header lines, but still that didn't work. Would there be a simple way to check if .htaccess is read properly?
– simernes
Nov 19 '18 at 15:20
You can add custom vhost files. Normally in/etc/apache2/sites-available/
and after thata2ensite enable myvhost.con
and restart
– Spirit
Nov 19 '18 at 15:22
|
show 1 more comment
I'm not sure if the "IfModule" works in htaccess. Put theHeader set Access-Control-Allow-Origin "*"
in your vhost.
– Spirit
Nov 19 '18 at 15:11
Excuse my ignorance, but where in which file would that be exactly?
– simernes
Nov 19 '18 at 15:14
The same file in which you put theDirectory
. And Restart/reload after changes
– Spirit
Nov 19 '18 at 15:15
That's the main apache2.conf file though, and I would prefer not to enable access control for * from everywhere, rather just for that specific sub directory. I tried to remove "IfModule" from the .htaccess and just leave the Header lines, but still that didn't work. Would there be a simple way to check if .htaccess is read properly?
– simernes
Nov 19 '18 at 15:20
You can add custom vhost files. Normally in/etc/apache2/sites-available/
and after thata2ensite enable myvhost.con
and restart
– Spirit
Nov 19 '18 at 15:22
I'm not sure if the "IfModule" works in htaccess. Put the
Header set Access-Control-Allow-Origin "*"
in your vhost.– Spirit
Nov 19 '18 at 15:11
I'm not sure if the "IfModule" works in htaccess. Put the
Header set Access-Control-Allow-Origin "*"
in your vhost.– Spirit
Nov 19 '18 at 15:11
Excuse my ignorance, but where in which file would that be exactly?
– simernes
Nov 19 '18 at 15:14
Excuse my ignorance, but where in which file would that be exactly?
– simernes
Nov 19 '18 at 15:14
The same file in which you put the
Directory
. And Restart/reload after changes– Spirit
Nov 19 '18 at 15:15
The same file in which you put the
Directory
. And Restart/reload after changes– Spirit
Nov 19 '18 at 15:15
That's the main apache2.conf file though, and I would prefer not to enable access control for * from everywhere, rather just for that specific sub directory. I tried to remove "IfModule" from the .htaccess and just leave the Header lines, but still that didn't work. Would there be a simple way to check if .htaccess is read properly?
– simernes
Nov 19 '18 at 15:20
That's the main apache2.conf file though, and I would prefer not to enable access control for * from everywhere, rather just for that specific sub directory. I tried to remove "IfModule" from the .htaccess and just leave the Header lines, but still that didn't work. Would there be a simple way to check if .htaccess is read properly?
– simernes
Nov 19 '18 at 15:20
You can add custom vhost files. Normally in
/etc/apache2/sites-available/
and after that a2ensite enable myvhost.con
and restart– Spirit
Nov 19 '18 at 15:22
You can add custom vhost files. Normally in
/etc/apache2/sites-available/
and after that a2ensite enable myvhost.con
and restart– Spirit
Nov 19 '18 at 15:22
|
show 1 more comment
1 Answer
1
active
oldest
votes
You had a typo:
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin: "*"
Header set Access-Control-Allow-Credentials: true
</IfModule>
you forget the :
Unfortunately even after correcting this alleged typo it is not working.
– simernes
Nov 19 '18 at 15:36
Ok, sry then I have no better idea. I work normally with own vhosts.
– Spirit
Nov 19 '18 at 15:37
Ok, I'm setting up vhosts now then thanks
– simernes
Nov 19 '18 at 15:40
add a comment |
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%2f53377116%2fhtaccess-in-subdirectory-of-default-apache2-directory%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You had a typo:
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin: "*"
Header set Access-Control-Allow-Credentials: true
</IfModule>
you forget the :
Unfortunately even after correcting this alleged typo it is not working.
– simernes
Nov 19 '18 at 15:36
Ok, sry then I have no better idea. I work normally with own vhosts.
– Spirit
Nov 19 '18 at 15:37
Ok, I'm setting up vhosts now then thanks
– simernes
Nov 19 '18 at 15:40
add a comment |
You had a typo:
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin: "*"
Header set Access-Control-Allow-Credentials: true
</IfModule>
you forget the :
Unfortunately even after correcting this alleged typo it is not working.
– simernes
Nov 19 '18 at 15:36
Ok, sry then I have no better idea. I work normally with own vhosts.
– Spirit
Nov 19 '18 at 15:37
Ok, I'm setting up vhosts now then thanks
– simernes
Nov 19 '18 at 15:40
add a comment |
You had a typo:
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin: "*"
Header set Access-Control-Allow-Credentials: true
</IfModule>
you forget the :
You had a typo:
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin: "*"
Header set Access-Control-Allow-Credentials: true
</IfModule>
you forget the :
answered Nov 19 '18 at 15:28
Spirit
797
797
Unfortunately even after correcting this alleged typo it is not working.
– simernes
Nov 19 '18 at 15:36
Ok, sry then I have no better idea. I work normally with own vhosts.
– Spirit
Nov 19 '18 at 15:37
Ok, I'm setting up vhosts now then thanks
– simernes
Nov 19 '18 at 15:40
add a comment |
Unfortunately even after correcting this alleged typo it is not working.
– simernes
Nov 19 '18 at 15:36
Ok, sry then I have no better idea. I work normally with own vhosts.
– Spirit
Nov 19 '18 at 15:37
Ok, I'm setting up vhosts now then thanks
– simernes
Nov 19 '18 at 15:40
Unfortunately even after correcting this alleged typo it is not working.
– simernes
Nov 19 '18 at 15:36
Unfortunately even after correcting this alleged typo it is not working.
– simernes
Nov 19 '18 at 15:36
Ok, sry then I have no better idea. I work normally with own vhosts.
– Spirit
Nov 19 '18 at 15:37
Ok, sry then I have no better idea. I work normally with own vhosts.
– Spirit
Nov 19 '18 at 15:37
Ok, I'm setting up vhosts now then thanks
– simernes
Nov 19 '18 at 15:40
Ok, I'm setting up vhosts now then thanks
– simernes
Nov 19 '18 at 15:40
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53377116%2fhtaccess-in-subdirectory-of-default-apache2-directory%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
I'm not sure if the "IfModule" works in htaccess. Put the
Header set Access-Control-Allow-Origin "*"
in your vhost.– Spirit
Nov 19 '18 at 15:11
Excuse my ignorance, but where in which file would that be exactly?
– simernes
Nov 19 '18 at 15:14
The same file in which you put the
Directory
. And Restart/reload after changes– Spirit
Nov 19 '18 at 15:15
That's the main apache2.conf file though, and I would prefer not to enable access control for * from everywhere, rather just for that specific sub directory. I tried to remove "IfModule" from the .htaccess and just leave the Header lines, but still that didn't work. Would there be a simple way to check if .htaccess is read properly?
– simernes
Nov 19 '18 at 15:20
You can add custom vhost files. Normally in
/etc/apache2/sites-available/
and after thata2ensite enable myvhost.con
and restart– Spirit
Nov 19 '18 at 15:22