Having issues removing that index.php. Tried all possible solutions with no luck :( |
[eluser]Tim Brownlaw[/eluser]
What you need to do is tell apache Where you have your folder(s) that contain your website files. Keep in mind, apache needs to know where you have your folders setup. ( There are other ways to do this but this is the simplest ) "One way" is to create a new entry in your httpd.conf. <Directory /Users/myusername/Sites> Options Indexes FollowSymLinks AllowOverride All </Directory> And make sure you restart your server ( which you do every time you make any changes to the "servers" files )! Give that a fly and let us know what happens. Also, Are you using virtualhosts? Bottom line is, We need to be able to tell apache where your document root is for each site and the settings for it. For instance in one of my virtual hosts files I have something like... ( I could put the above directory entry above in here but I never change it so it's simpler for myself to just put in the httpd.conf file ) <VirtualHost *:80> ServerName wordpresstest.com ServerAlias www.wordpresstest.com DocumentRoot /home/wordpresstest/public_html ErrorLog /home/wordpresstest/logs/error.log </VirtualHost> There's a ton of info on this if you look in Google... Without seeing exactly what you have currently setup, it's a little difficult to just give you "the answer". But hopefully this will give you something to look at. Cheers Tim |
Welcome Guest, Not a member yet? Register Sign In |