Jump to content

Recommended Posts

Posted

You have /home/saikosns/public_html/.htaccess that has

RewriteEngine On
RewriteBase /
RewriteRule ^(media/.*)$ - [L]
RewriteRule ^(admin_media/.*)$ - [L]
RewriteRule ^(ComicPub/dispatch\.wsgi/.*)$ - [L]
RewriteRule ^(.*)$ ComicPub/dispatch.wsgi/$1 [QSA,PT,L]
What that basically means is anything that isn't /media/ or /admin_media/ gets processed through dispatch.wsgi. Since you don't have a rule for /static/ it's not going to be able to access those files and gives a 404. Add this line after admin_media/

RewriteRule ^(static/.*)$ - [L]

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...