i have this code .htaccess work for laravel framework
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /testing/public/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?$1 [NC,L]
</IfModule>
which work fine but the problem in framework i go to site example.com/testing
the problem laravel framework read /testing as route
so i have put all route under testing
so the Question is :how can i make apache send PHP route without "/testing" ?