Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Slash missing before wp-content & Some uploaded images are not showing?

Slash missing before WP-content & Some uploaded images are not showing?

For Example: URL: www.example.comwp-content/uopload/2017

In this website some images not working

like image 856
Munuswamy Boopathy M Avatar asked Oct 24 '25 07:10

Munuswamy Boopathy M


1 Answers

Maybe it's a bit late for you OP, but anyone facing a similar issue and comes across this post, this may be because of a redirection rule in your web server.

I had http redirecting to https and my rule was missing the trailing slash in my new URL, e.g. for Apache:

<VirtualHost *:80>
  Redirect permanent / https://www.example.com
...

Fix this by adding the trailing slash:

<VirtualHost *:80>
  Redirect permanent / https://www.example.com/
...
like image 59
Antonio Simoes Avatar answered Oct 26 '25 06:10

Antonio Simoes



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!