I have installed Wordpress in a subdomain on the same host. The Wordpress installation completed successfully but the script seems to be conflicting with how Wordpress links to pages like admin, index.php, etc. I have tried adding the line of code below to the scripts redirect php but I still can’t access Wordpress.
case "blog" :
include ( "blog/index.php" ) ;
break;
Do you have WordPress using friendly paths? If so you will have to translate the base path with a similar approach to the renaming option you choose in wordpress.
I’m not able to access the admin dashboard to check if Wordpress is using friendly paths. I’m not getting any error messages, however when I type “www.mysite.com/wordpress” in the browser it takes me to the default index of the other script I’m using. Basically, any index.php file redirects to the other scripts default home path. Would it possible to rename the Wordpress index.php to something else and have that serve as the default wordpress index?