「連絡先」を次のように変更したいのですindex.php?controller=Front&action=$1&page=12
が、404 が返されます。
要求された URL /symfony/LocAtMe/web/contact がこのサーバーで見つかりませんでした"
これは私のhtaccessのコードです:
AddType application/x-httpd-php .tpl .inc
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ index.php?controller=default&action=index [QSA]
RewriteRule ^contact$ index.php?controller=Front&action=$1&page=12 [QSA, L]
RewriteRule ^([a-zA-Z0-9]+)$ index.php?page=$1 [QSA]
</IfModule>
どんな助けでも大歓迎です。