I load the module in httpd.conf:
Code: Select all
LoadModule rewrite_module modules/mod_rewrite.soCode: Select all
<Directory />
Options FollowSymLinks
# AllowOverride None
AllowOverride All
</Directory>Code: Select all
Compiled in modules:
core.c
prefork.c
http_core.c
mod_so.cThis is my .htacess in my root directory:
Code: Select all
RewriteEngine On
Options +FollowSymlinks
RewriteRule ^(.*)-(.*).html$ index.php?pid=$1&pageTitle=$2http://www.odioworks.com/32-An_Entrepre ... rship.html (which should work) doesn't.



