How to access my php page in wordpress

I created a services folder in wordpress/wp-content/services. This folder will have web services coded in PHP. But when i try to access the .php file it is being redirected to index.html

While checking the .htaccess file i came across the line # ErrorDocument 404 /index.php even though i commented the line the problem is still same.

Is there any particular standard to be followed to access my php.
I also tried including require_once(wp-load()) but no use..

please help..
thanks

1 Answer
1

The only way I can think of attempting this would be to have a custom page template that will pull in various bits of your custom PHP via get_template_part

Leave a Comment