Hi forum, I need to call /wp-content/plugins/myplugin/somefile.php from admin but it's loads "Page not found 404" page, how can I access directly to my file? Here is my .htaccess file content # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteRule ^.*shop/images/(\d+)/?\??(.*)$ /wp-content/plugins/shopp/core/image.php?siid=$1&$2 [QSA,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress Code (markup):
No, I didn't mean that I can't access php file to edit or delet, I meant call that file url on browser, it loads "page not found 404" page of my wordpress site.
you can't access file in Web browser this is for security reason... You can only access these files in WP Admin or File manager of Web Hosting