rewrite rule on nginx for css js files not work The Next CEO of Stack OverflowBlank Page: wordpress on nginx+php-fpmNginx gives 504 Gateway Time-out once moved to livePHP app breaks on Nginx, but works on ApacheNGINX don't parse .php5 as .phpLaravel 4.1 on nginx routes error 404nginx rewrite throw 404 with last and breakNginX + WordPress + SSL + non-www + W3TC vhost config file questionsnginx PHP files downloading instead of executingCodeIgniter nginx rewrite rules for i8ln URL'sNGINX virtual host config for Magento2 in a subfolder

Multi tool use
Multi tool use

Does soap repel water?

Does Germany produce more waste than the US?

Solving system of ODEs with extra parameter

How to avoid supervisors with prejudiced views?

Why don't programming languages automatically manage the synchronous/asynchronous problem?

What is the value of α and β in a triangle?

Why, when going from special to general relativity, do we just replace partial derivatives with covariant derivatives?

What steps are necessary to read a Modern SSD in Medieval Europe?

Why the difference in type-inference over the as-pattern in two similar function definitions?

Find non-case sensitive string in a mixed list of elements?

WOW air has ceased operation, can I get my tickets refunded?

Why is information "lost" when it got into a black hole?

Why is quantifier elimination desirable for a given theory?

Math-accent symbol over parentheses enclosing accented symbol (amsmath)

Chain wire methods together in Lightning Web Components

"misplaced omit" error when >centering columns

Why is my new battery behaving weirdly?

Can we say or write : "No, it'sn't"?

What does "Its cash flow is deeply negative" mean?

Unclear about dynamic binding

Do I need to write [sic] when a number is less than 10 but isn't written out?

Is it convenient to ask the journal's editor for two additional days to complete a review?

Easy to read palindrome checker

Running a General Election and the European Elections together



rewrite rule on nginx for css js files not work



The Next CEO of Stack OverflowBlank Page: wordpress on nginx+php-fpmNginx gives 504 Gateway Time-out once moved to livePHP app breaks on Nginx, but works on ApacheNGINX don't parse .php5 as .phpLaravel 4.1 on nginx routes error 404nginx rewrite throw 404 with last and breakNginX + WordPress + SSL + non-www + W3TC vhost config file questionsnginx PHP files downloading instead of executingCodeIgniter nginx rewrite rules for i8ln URL'sNGINX virtual host config for Magento2 in a subfolder










1















I use laravel framework for my website on nginx server



I need to apply rewrite rule on nginx



its a sample:



site.com/play/gamename/css.css --> site.com/uploads/games/gamename/css.css
or
site.com/play/gamename/js.js --> site.com/uploads/games/gamename/js.js


and I need to know How can I define rule to do it?



my website root path is



/var/www/html/siteuser/


root directories:



app
storage
public
-uploads
,...


in my old server with apache .htaccess:



RewriteCond %REQUEST_URI .(jpg|png|css|js|appcache|xml|ogg|m4a)$
RewriteRule ^play/(.+) siteuser/public/uploads/games/$1 [L]


I test this but not work:



server xml









share|improve this question
















bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • What is the problem you are having?

    – Michael Hampton
    Aug 8 '18 at 15:01











  • @MichaelHampton rewrite rule doesn't work

    – mohammad6006
    Aug 8 '18 at 15:47















1















I use laravel framework for my website on nginx server



I need to apply rewrite rule on nginx



its a sample:



site.com/play/gamename/css.css --> site.com/uploads/games/gamename/css.css
or
site.com/play/gamename/js.js --> site.com/uploads/games/gamename/js.js


and I need to know How can I define rule to do it?



my website root path is



/var/www/html/siteuser/


root directories:



app
storage
public
-uploads
,...


in my old server with apache .htaccess:



RewriteCond %REQUEST_URI .(jpg|png|css|js|appcache|xml|ogg|m4a)$
RewriteRule ^play/(.+) siteuser/public/uploads/games/$1 [L]


I test this but not work:



server xml









share|improve this question
















bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • What is the problem you are having?

    – Michael Hampton
    Aug 8 '18 at 15:01











  • @MichaelHampton rewrite rule doesn't work

    – mohammad6006
    Aug 8 '18 at 15:47













1












1








1








I use laravel framework for my website on nginx server



I need to apply rewrite rule on nginx



its a sample:



site.com/play/gamename/css.css --> site.com/uploads/games/gamename/css.css
or
site.com/play/gamename/js.js --> site.com/uploads/games/gamename/js.js


and I need to know How can I define rule to do it?



my website root path is



/var/www/html/siteuser/


root directories:



app
storage
public
-uploads
,...


in my old server with apache .htaccess:



RewriteCond %REQUEST_URI .(jpg|png|css|js|appcache|xml|ogg|m4a)$
RewriteRule ^play/(.+) siteuser/public/uploads/games/$1 [L]


I test this but not work:



server xml









share|improve this question
















I use laravel framework for my website on nginx server



I need to apply rewrite rule on nginx



its a sample:



site.com/play/gamename/css.css --> site.com/uploads/games/gamename/css.css
or
site.com/play/gamename/js.js --> site.com/uploads/games/gamename/js.js


and I need to know How can I define rule to do it?



my website root path is



/var/www/html/siteuser/


root directories:



app
storage
public
-uploads
,...


in my old server with apache .htaccess:



RewriteCond %REQUEST_URI .(jpg|png|css|js|appcache|xml|ogg|m4a)$
RewriteRule ^play/(.+) siteuser/public/uploads/games/$1 [L]


I test this but not work:



server xml






nginx rewrite






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Aug 8 '18 at 21:09







mohammad6006

















asked Aug 8 '18 at 14:51









mohammad6006mohammad6006

11510




11510





bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.














  • What is the problem you are having?

    – Michael Hampton
    Aug 8 '18 at 15:01











  • @MichaelHampton rewrite rule doesn't work

    – mohammad6006
    Aug 8 '18 at 15:47

















  • What is the problem you are having?

    – Michael Hampton
    Aug 8 '18 at 15:01











  • @MichaelHampton rewrite rule doesn't work

    – mohammad6006
    Aug 8 '18 at 15:47
















What is the problem you are having?

– Michael Hampton
Aug 8 '18 at 15:01





What is the problem you are having?

– Michael Hampton
Aug 8 '18 at 15:01













@MichaelHampton rewrite rule doesn't work

– mohammad6006
Aug 8 '18 at 15:47





@MichaelHampton rewrite rule doesn't work

– mohammad6006
Aug 8 '18 at 15:47










1 Answer
1






active

oldest

votes


















0














You should not use a rewrite for this at all. Use an aliased location instead.



For example:



location ~* ^/play/.*.(jpg|png|css|js|appcache|xml|ogg|m4a)$ 
alias /var/www/html/siteuser/public/uploads/games/;



This will serve only static files with the given file extensions for URLs beginning with /play/, from the path given in the alias, using case insensitive matching. No PHP code can run from inside /play/ in this configuration.






share|improve this answer

























  • I need to apply it only for js css and image files

    – mohammad6006
    Aug 8 '18 at 16:22











  • @mohammad6006 So, other files in /play/ should not be served from the uploads directory? They should be served directly from the document root?

    – Michael Hampton
    Aug 8 '18 at 16:23











  • for example there is route url : site.com/play/gameid

    – mohammad6006
    Aug 8 '18 at 16:25











  • @mohammad6006 IN that case, you can just do a case insensitive regex match as it is now.

    – Michael Hampton
    Aug 8 '18 at 16:27











  • site.com/play/gamename/js.js 404 not found it should be site.com/upload/games/gamename/js.js

    – mohammad6006
    Aug 8 '18 at 16:35











Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f925474%2frewrite-rule-on-nginx-for-css-js-files-not-work%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









0














You should not use a rewrite for this at all. Use an aliased location instead.



For example:



location ~* ^/play/.*.(jpg|png|css|js|appcache|xml|ogg|m4a)$ 
alias /var/www/html/siteuser/public/uploads/games/;



This will serve only static files with the given file extensions for URLs beginning with /play/, from the path given in the alias, using case insensitive matching. No PHP code can run from inside /play/ in this configuration.






share|improve this answer

























  • I need to apply it only for js css and image files

    – mohammad6006
    Aug 8 '18 at 16:22











  • @mohammad6006 So, other files in /play/ should not be served from the uploads directory? They should be served directly from the document root?

    – Michael Hampton
    Aug 8 '18 at 16:23











  • for example there is route url : site.com/play/gameid

    – mohammad6006
    Aug 8 '18 at 16:25











  • @mohammad6006 IN that case, you can just do a case insensitive regex match as it is now.

    – Michael Hampton
    Aug 8 '18 at 16:27











  • site.com/play/gamename/js.js 404 not found it should be site.com/upload/games/gamename/js.js

    – mohammad6006
    Aug 8 '18 at 16:35















0














You should not use a rewrite for this at all. Use an aliased location instead.



For example:



location ~* ^/play/.*.(jpg|png|css|js|appcache|xml|ogg|m4a)$ 
alias /var/www/html/siteuser/public/uploads/games/;



This will serve only static files with the given file extensions for URLs beginning with /play/, from the path given in the alias, using case insensitive matching. No PHP code can run from inside /play/ in this configuration.






share|improve this answer

























  • I need to apply it only for js css and image files

    – mohammad6006
    Aug 8 '18 at 16:22











  • @mohammad6006 So, other files in /play/ should not be served from the uploads directory? They should be served directly from the document root?

    – Michael Hampton
    Aug 8 '18 at 16:23











  • for example there is route url : site.com/play/gameid

    – mohammad6006
    Aug 8 '18 at 16:25











  • @mohammad6006 IN that case, you can just do a case insensitive regex match as it is now.

    – Michael Hampton
    Aug 8 '18 at 16:27











  • site.com/play/gamename/js.js 404 not found it should be site.com/upload/games/gamename/js.js

    – mohammad6006
    Aug 8 '18 at 16:35













0












0








0







You should not use a rewrite for this at all. Use an aliased location instead.



For example:



location ~* ^/play/.*.(jpg|png|css|js|appcache|xml|ogg|m4a)$ 
alias /var/www/html/siteuser/public/uploads/games/;



This will serve only static files with the given file extensions for URLs beginning with /play/, from the path given in the alias, using case insensitive matching. No PHP code can run from inside /play/ in this configuration.






share|improve this answer















You should not use a rewrite for this at all. Use an aliased location instead.



For example:



location ~* ^/play/.*.(jpg|png|css|js|appcache|xml|ogg|m4a)$ 
alias /var/www/html/siteuser/public/uploads/games/;



This will serve only static files with the given file extensions for URLs beginning with /play/, from the path given in the alias, using case insensitive matching. No PHP code can run from inside /play/ in this configuration.







share|improve this answer














share|improve this answer



share|improve this answer








edited Aug 8 '18 at 16:26

























answered Aug 8 '18 at 16:20









Michael HamptonMichael Hampton

174k27318643




174k27318643












  • I need to apply it only for js css and image files

    – mohammad6006
    Aug 8 '18 at 16:22











  • @mohammad6006 So, other files in /play/ should not be served from the uploads directory? They should be served directly from the document root?

    – Michael Hampton
    Aug 8 '18 at 16:23











  • for example there is route url : site.com/play/gameid

    – mohammad6006
    Aug 8 '18 at 16:25











  • @mohammad6006 IN that case, you can just do a case insensitive regex match as it is now.

    – Michael Hampton
    Aug 8 '18 at 16:27











  • site.com/play/gamename/js.js 404 not found it should be site.com/upload/games/gamename/js.js

    – mohammad6006
    Aug 8 '18 at 16:35

















  • I need to apply it only for js css and image files

    – mohammad6006
    Aug 8 '18 at 16:22











  • @mohammad6006 So, other files in /play/ should not be served from the uploads directory? They should be served directly from the document root?

    – Michael Hampton
    Aug 8 '18 at 16:23











  • for example there is route url : site.com/play/gameid

    – mohammad6006
    Aug 8 '18 at 16:25











  • @mohammad6006 IN that case, you can just do a case insensitive regex match as it is now.

    – Michael Hampton
    Aug 8 '18 at 16:27











  • site.com/play/gamename/js.js 404 not found it should be site.com/upload/games/gamename/js.js

    – mohammad6006
    Aug 8 '18 at 16:35
















I need to apply it only for js css and image files

– mohammad6006
Aug 8 '18 at 16:22





I need to apply it only for js css and image files

– mohammad6006
Aug 8 '18 at 16:22













@mohammad6006 So, other files in /play/ should not be served from the uploads directory? They should be served directly from the document root?

– Michael Hampton
Aug 8 '18 at 16:23





@mohammad6006 So, other files in /play/ should not be served from the uploads directory? They should be served directly from the document root?

– Michael Hampton
Aug 8 '18 at 16:23













for example there is route url : site.com/play/gameid

– mohammad6006
Aug 8 '18 at 16:25





for example there is route url : site.com/play/gameid

– mohammad6006
Aug 8 '18 at 16:25













@mohammad6006 IN that case, you can just do a case insensitive regex match as it is now.

– Michael Hampton
Aug 8 '18 at 16:27





@mohammad6006 IN that case, you can just do a case insensitive regex match as it is now.

– Michael Hampton
Aug 8 '18 at 16:27













site.com/play/gamename/js.js 404 not found it should be site.com/upload/games/gamename/js.js

– mohammad6006
Aug 8 '18 at 16:35





site.com/play/gamename/js.js 404 not found it should be site.com/upload/games/gamename/js.js

– mohammad6006
Aug 8 '18 at 16:35

















draft saved

draft discarded
















































Thanks for contributing an answer to Server Fault!


  • 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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f925474%2frewrite-rule-on-nginx-for-css-js-files-not-work%23new-answer', 'question_page');

);

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







L0g,h 5CG3UJ2GBflEd8WFcVL0YdQvEV6uBn8z KlsWwUM4jqQa9pikYj2sVyjomDme5lIBE4CYzIpjgylZjQAP,WXs1JpfJ,J9PBKF
5,qM nXu QxKHhvjum KRt LLyVSP9OOGyR

Popular posts from this blog

RemoteApp sporadic failureWindows 2008 RemoteAPP client disconnects within a matter of minutesWhat is the minimum version of RDP supported by Server 2012 RDS?How to configure a Remoteapp server to increase stabilityMicrosoft RemoteApp Active SessionRDWeb TS connection broken for some users post RemoteApp certificate changeRemote Desktop Licensing, RemoteAPPRDS 2012 R2 some users are not able to logon after changed date and time on Connection BrokersWhat happens during Remote Desktop logon, and is there any logging?After installing RDS on WinServer 2016 I still can only connect with two users?RD Connection via RDGW to Session host is not connecting

Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020