У меня есть проект Symfony 1.4.Со стандартным .htaccess:
Options +FollowSymLinks +ExecCGI
<IfModule mod_rewrite.c>
RewriteEngine On
# uncomment the following line, if you are having trouble
# getting no_script_name to work
#RewriteBase /
# we skip all files with .something
#RewriteCond %{REQUEST_URI} \..+$
#RewriteCond %{REQUEST_URI} !\.html$
#RewriteRule .* - [L]
# we check if the .html version is here (caching)
RewriteRule ^$ index.html [QSA]
RewriteRule ^([^.]+)$ $1.html [QSA]
RewriteCond %{REQUEST_FILENAME} !-f
# no, so we redirect to our front web controller
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
Я просто хочу, чтобы в моей папке web symfony была настройка Wordpress (на самом деле много, с разными языками):
-web (folder)
index.php
frontend.php
-blogwordpress
-fr
index.php
-en
index.php
Мой вопрос:что я должен написать в файле .htaccess, показанном ранее, чтобы разрешить запрос типа: http://127.0.0.1/blogwordpress/fr
, чтобы он отслеживался Wordpress index.php, а не интерфейсом Symfony?
Конечно, когда я набираю этот URL 404 появляется в моем Symfony:
404 | Not Found | sfError404Exception
Action "blogwordpress/fr" does not exist.
Заранее спасибо