Cant Edit Resource Icon

If it shows a 404 error like that, it is likely coming from the web server itself. Assuming you have friendly URLs enabled and the index.php version works, then something is blocking the rewrite in this case, possibly by simply running first and taking precedence. Look for other rewrite rules or directories that exist with the same name; you may need to contact your host as there could be something a level above your site that is being triggered.
 
find problem
if set nginx.conf will be 404.
location ~* .(ico|jpg|jpeg|gif|png|swf|htm|html|rar|zip|7z|xml){
root /home/wwwroot/xf4.org/public_html;
expires 30d;
}
 
No, this is a server configuration error. You're not running PHP on any of those requests. You will need to tweak your configuration.
 
Top Bottom