我一直在使用 a从我的 Symfony2项目.htaccess
中删除访问权限。我希望用户从这样的 url 访问项目:app.php
但我需要从此网址删除访问权限
现在我的 .htaccess 让我可以访问这两个地址,这是我的 .htaccess 代码:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteOptions Inherit
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !^/web/shows
RewriteRule ^(.*) web/app_dev.php [QSA,L]
</IfModule>