Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8592007
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T23:39:05+00:00 2026-06-11T23:39:05+00:00

I want a route called ‘main’ which will serve static files: app.use(‘/main’,express.static(__dirname+’/public’)); However when

  • 0

I want a route called ‘main’ which will serve static files:

app.use('/main',express.static(__dirname+'/public'));

However when i do:

http://my.site.dev/main

The CSS and JS files won’t download because it is trying to get them from

http://my.site.dev/css/styles.css

It should be getting the files from:

http://my.site.dev/main/css/styles.css

However, if I access my site with a trailing slash:

http://my.site.dev/main/

All files come through fine

Any ideas why not having a trailing slash messes up resources like CSS and JS from coming in?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T23:39:07+00:00Added an answer on June 11, 2026 at 11:39 pm

    This is an http problem, not just an Express-related challenge. The problem is discussed at:

    • Relative URLs and trailing slashes
    • http://www.bizcoder.com/the-mystery-of-the-trailing-slash-and-the-relative-url

    If your URL is /main and your relative URL is css/style.css, it will resolve to /css/style.css; but if your URL is /main/, the relative URL resolves to /main/css/style.css.

    My strategy for dealing with this is to redirect to add the trailing slash. Like this in Express:

    app.all(/^\/main$/, function(req, res) { res.redirect('/main/'); });
    app.use('/main/',express.static(__dirname+'/public'));
    

    Or:

    app.enable('strict routing');
    app.all('/main', function(req, res) { res.redirect('/main/'); });
    app.use('/main/',express.static(__dirname+'/public'));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create a route such as get '/referrals/send_invite/:email_address' I will be calling
I want to make customer route for url which have parameters. <a href='javascript:void(0)' onclick=window.location='<?php
I'm trying to get my rails 3 app to use a route that looks
I have a method called revisions, and I want to be able use the
In my Isolated storage I have a file called Route.gpx which is getting created
devise_for creates routes including a DELETE route, which we want to remove, and devise_for
I have a route called settings_redirect, which I've defined as follows: routes.rb match /settings/redirect
I want a setup/teardown method to be called before and after a route is
I want to route url through Zend route regex with Swedish character and here
I want to route to more than one action, I make the routing configuration

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.