. Htaccess ile URL üç isteğe bağlı parametreleri izin nasıl?

0 Cevap php

I have http://example.com and a PHP routing class that checks if some URL exists.
I want to make a new route, which is:

http://example.com/foo/bar/123

ama sürece ben bunu açık olarak, Apache bir hata sayfasına beni yönlendirir. Yani bir. Htaccess kullanıyorum. Kodu:

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)  /index.php [L]

ve bu sürece ben http://example.com/foo kullanmak gibi çalışır, ancak bazı diğer parametreleri ekledikten sonra, o bir hata beni yönlendirir.

I'm guessing that the rewrite code is wrong. Is it wrong?
If yes, could you suggest me the good one?
If no, where the problem could be located?

0 Cevap