1. Apache static resource cross-domain access Find the Apache configuration file httpd.conf Find this line Remove the # comment character The purpose is to enable the Apache header information custom module Add a new header to the standalone host configuration file For example: <VirtualHost *:88> ServerAdmin [email protected] DocumentRoot "****************" ServerName www.jb51.com Header set Access-Control-Allow-Origin * ErrorLog "***********" CustomLog "****************************" common <Directory "**************"> SetOutputFilter DEFLATE Options FollowSymLinks ExecCGI Require all granted AllowOverride All Order allow, deny Allow from all DirectoryIndex index.html index.php </Directory> </VirtualHost> ApacheCopy This means adding a header when accessing resources on this domain name. Restart apache 2. nginx static resources allow cross-domain access Similarly, find the corresponding domain name configuration file Add configuration in the server module: example: server { listen 80; add_header 'Access-Control-Allow-Origin' '*'; location /Roboto/ { root /home/images; autoindex on; } } nginx reload After configuring through the above method, there is no problem in accessing static resources across domains again The above is the solution to allow cross-domain access to nginx/apache static resources You may also be interested in:
|
<<: Summary of Binlog usage of MySQL database (must read)
>>: JavaScript uses setTimeout to achieve countdown effect
1. CSS background tag 1. Set the background color...
Official website: http://code.google.com/p/zen-cod...
Table of contents Overview Form validation withou...
Last year, due to project needs, I wrote a crawle...
Table of contents Preface Introduction to Dockerf...
Table of contents Preface - Vue Routing 1. The mo...
After starting Docker, let's take a look at t...
Deleting a single table: DELETE FROM tableName WH...
If you want to adjust the size and number of Inno...
1. CSS writing format 1. Inline styles You can wr...
1. Background 1. The front end uses vue + vuex + ...
DPlayer.js video player plug-in is easy to use Ma...
Table of contents Demand background Thought Analy...
Use apk add ansible to add the ansible service to...
Database Table A: CREATE TABLE task_desc_tab ( id...