Hi, I'm sorry if this is a noob question.
I have been trying to install wordpress so that my index.php is in one directory and wordpress installation in another. i have found this article in the codex -
http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory
the problem with this article is that it only explains how to do it if you want the index.php file in root.
i want my index.php file to be in domain.com/store,
and the rest of the installation to be in domain.com/wordpress
step nine of the guide says to do this to the index.php file:
Change the line that says:
require('./wp-blog-header.php');
to the following, using your directory name for the WordPress core files:
require('./wordpress/wp-blog-header.php');
what do i need to write for the path to go from domain.com/store to domain.com/wordpress?
any help would be very appreciated, i've been searching google and these forums for a good hour now with no luck.