我有一个 symfony 应用程序,我使用 .htaccess 规则来访问 /admin 目录。
example.com/admin/content 给我一个 404 错误
example.com/backend_dev.php/admin/content 按预期为我提供了我的 symfony 管理页面。
选项 +FollowSymLinks +ExecCGI
这是当前有效的 .htaccess 文件。
<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 ^(.*)$ ../backend.php [QSA,L]
</IfModule>
我完全不知道如何转换它或从哪里开始寻找教程。
任何帮助/教程链接将不胜感激。