1

「連絡先」を次のように変更したいのです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>

どんな助けでも大歓迎です。

4

2 に答える 2

0

上記のコードが配置されていることを確認してから、次のDOCUMENT_ROOT/symfony/LocAtMe/web/.htaccessコードを使用します。

RewriteEngine on
RewriteBase /symfony/LocAtMe/web/

RewriteRule ^$ index.php?controller=default&action=index [QSA,L]
RewriteRule ^(contact)/?$ index.php?controller=Front&action=$1&page=12 [QSA,L]
RewriteRule ^([a-zA-Z0-9]+)/?$ index.php?page=$1 [QSA,L]
于 2013-10-06T07:58:24.043 に答える