enable mod_rewrite in MAMP?
Posted
by ajsie
on Stack Overflow
See other posts from Stack Overflow
or by ajsie
Published on 2010-04-10T02:22:58Z
Indexed on
2010/04/10
2:33 UTC
Read the original article
Hit count: 891
how do i enable mod_rewrite in MAMP.
i have created a file .htaccess in the documentroot with following content:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
but it still doesn´t work.
i suspect that i have to enable mod_rewrite in MAMP's apache configuration.
how do i do that? do i have to download anything?
thanks
© Stack Overflow or respective owner