If you are using Nginx, the following directive in your site configuration will direct all requests to the index.php front controller:
Код: Выделить всё
location / {
try_files $uri $uri/ /index.php?$query_string;
}
Код: Выделить всё
location / {
try_files $uri $uri/ /index.php?$query_string;
}