|
Oh I use XAMPP. It's most likely the configuration of your server compared with XAMPP.
If it is mod_rewrite, it's disabled by deafult (it should not be assumed it's there on all servers, so on a development one it should be disabled). To enable to change the following file:
xampp_Directory\apache\conf\httpd.conf
Change:
#LoadModule rewrite_module modules/mod_rewrite.so
for
LoadModule rewrite_module modules/mod_rewrite.so
It's on line 118, if your still being bummed by XAMPP check you server php_info() and compare with XAMPP.
Dan's it's most likely not to do with OS, as XAMPP's Apache notices the .htaccess file and process it fine on my windows.
__________________
Website Services
PHP Code:
if(Added_Talkupation($post) == TRUE){iHug($you);}
Last edited by rogem002 : 04-10-2008 at 11:31 AM.
|