Date: 03/15/07 (PHP Community) Keywords: php, mysql, sql, apache Can someone point out what I am not seeing here? Loaded Modules core mod_win32 mpm_winnt http_core mod_so mod_php5 mod_actions mod_alias mod_asis AllowOverride is set to All by default, which means that the server will indeed look for .htaccess files. To test, I set up a dummy .htaccess file, which is in the root dir: Options +FollowSymlinks RewriteEngine on RewriteBase / RewriteRule ^page/([A-Za-z-]+)$ /index.php?test=$1 [QSA,L] And the end result is a 404 error. I've tried every possible combo of rewrite syntax, rules, conditions, etc. Does anyone have any ideas here?? I've never tried mod_rewrite on winblows, but the OS shouldn't matter as long as I'm running Apache and not IIS.
|