Friday 24 October 2003 5:39:37 am
Hi I am trying to get rid of the index.php part of the URLs on my website (ie I would like the urls to look like http://www.mysite.com/content/view/full/2 instead of http://www.mysite.com/index.php/content/view/full/2). AFAIK, all I need to do is ensure that the virtualhosting stuff on apache is configured correctly. It looks fine to me, but this part still isn't working. I am hoping that someone on this forum can direct me to the source of my problem. The relevant parts of my httpd.conf look like:
NameVirtualHost 192.168.0.1
<VirtualHost 192.168.0.1>
ServerAlias www.mysite.com
<!-- Other config directives --> </VirtualHost> I have another virtualhost directive for the admin site.
My site.ini.append.php looks like:
[SiteAccessSettings]
MatchOrder=host
HostMatchType=map
HostMatchMapItems[]=mysite.com;rcc
HostMatchMapItems[]=www.mysite.com;rcc HostMatchMapItems[]=admin.mysite.com;admin If anyone can give me some pointers here, I would really appreciate it. Thanks
|