我希望将“联系人”更改为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>
非常感谢任何帮助。