I want to redirect all requests to my index.php script in such a way that everything that goes after http://mysite/ would passed to index.php as url-argument. For example, http://mysite/moo.css should become http://mysite/index.php/moo.css and http://moosite/moo/foo/bar/ should become http://index.php/moosite/moo/foo/bar/.

Easy, huh?

But not RedirectMatch (.*) index.php/$1, nor RewriteRule ^(.*)$ index.php/$1 [R,L] (or others regexp like that; RewriteEngine on was not ommitted; mod_rewrite and mod_alias are turned on) took effect.

What's going on?

link|improve this question

Post the whole thing -- what else is in your htaccess? – cwallenpoole Aug 16 '11 at 19:11
@cwallenpoole, Nothing at all =) – shybovycha Aug 16 '11 at 19:16
feedback

1 Answer

up vote 1 down vote accepted

Without knowing anything more, my guess would be that the Allowoverride directive is missing for that directory. (Captain obvious style answer, but still easy to overlook).

link|improve this answer
and what value should it have? – shybovycha Aug 16 '11 at 19:16
There should be in a Directory tag which refers to the root directory (or a parent directory) of your side. It should have Allowoverride in it. httpd.apache.org/docs/2.0/howto/htaccess.html – cwallenpoole Aug 16 '11 at 19:20
Thanks a lot! Should read more about virtual host configuration hehe =) – shybovycha Aug 16 '11 at 19:21
@shyboycha It is AWESOME stuff. Or I'm a geek and read tech manuals for fun. Or both. – cwallenpoole Aug 16 '11 at 19:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.