index.php

2005-06-26 Thread Maher Mohamed
how can i make my server link to be redirected to the index.php

i hve a web page at http://150.140.210.79:2005/~mahmoh
the thing is that if i make the index.html to index.php the whenever i
go to the url above
i have to add the extra /index.php 

can i get rid of that? is there a way?

 -- 
Mohamed M. Maher
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: index.php

2005-06-26 Thread Sergey Spivak

Hi!

Offtopic. :-\

 i hve a web page at http://150.140.210.79:2005/~mahmoh
 the thing is that if i make the index.html to index.php the
 whenever i go to the url above. i have to add the extra /index.php 
 can i get rid of that? is there a way?

add index.php to DirectoryIndex directive in apache config.

-- 
wbr, sergey v. spivak
sergey#spivak.kiev.ua
zlob-uanic/eunic/ripe
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: index.php

2005-06-26 Thread Owe André Jørgensen

Maher Mohamed wrote:

how can i make my server link to be redirected to the index.php

i hve a web page at http://150.140.210.79:2005/~mahmoh
the thing is that if i make the index.html to index.php the whenever i
go to the url above
i have to add the extra /index.php 


can i get rid of that? is there a way?

 -- 
Mohamed M. Maher

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


?php

Header('Location: /');

?

this goes into the ~public_html/index.php file to the home folder of the 
user mahmoh.


Owe Jørgensen

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: index.php

2005-06-26 Thread Kövesdán Gábor

Maher Mohamed wrote:


how can i make my server link to be redirected to the index.php

i hve a web page at http://150.140.210.79:2005/~mahmoh
the thing is that if i make the index.html to index.php the whenever i
go to the url above
i have to add the extra /index.php 


can i get rid of that? is there a way?

--
Mohamed M. Maher
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]
 


You should modify your DirectoryIndex line in httpd.conf in such way:

DirectoryIndex index.html index.html.var index.php index.phtml

According to that, the webserver firstly looks for index.html, if it 
doesn't exist, then for index.html.var...
The index.php is the third in this example, but You can use a different 
order.


Cheers,

Gábor Kövesdán
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: index.php

2005-06-26 Thread Bashar
If you run apache just add index.php to DirectoryIndex directive at the 
httpd.conf and it should work fine.


example:
IfModule mod_dir.c
DirectoryIndex index.html index.wml index.cgi index.shtml index.jsp 
index.js index.jp index.php4 index.php3 index.php index.phtml index.htm 
default.htm default.html home.htm

/IfModule

you can have any file name for example maher.php too and it will load as 
the first page.



Best Regards,


Maher Mohamed wrote:


how can i make my server link to be redirected to the index.php

i hve a web page at http://150.140.210.79:2005/~mahmoh
the thing is that if i make the index.html to index.php the whenever i
go to the url above
i have to add the extra /index.php 


can i get rid of that? is there a way?

--
Mohamed M. Maher
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]



 


___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]