views:

304

answers:

4

I'm installing Modx on windows with ISAPI Rewrite instead of apache with mod_rewrite?

How do you define the rewrite rules? I'm guessing not with an .htccess file?

any Ideas? Thanks

A: 

According to the ISAPI_Rewrite 2 documentation you need to write the configuration into the httpd.ini file into the [ISAPI_Rewrite] section:

[ISAPI_Rewrite]

RewriteRule …
Gumbo
A: 

The global config for ISAPI_Rewrite 3 is called httpd.conf, and per-site distributed configurations are .htaccess.

TonyCool
A: 

Segue o código que eu tinha na versão 2, eu não estou conseguindo fazer o mesmo no .htacess

Alguém pode me ajudar?

SimonJPA
A: 

RewriteRule ^/$ /index.php?REQUEST_URI=index.php [L]

SimonJPA