Hello,
I'm having a problem, I need to access a file with .php
, it should point to autostart.php?url=*.php
Explanation:
No autostart.php
it includes in a file and after it includes include in the page that is in GET
.
I did this with HTACCESS, but I could not make it work as I wanted.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule .*\.(php)$ autostart.php?url=$1 [R,NC,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
</IfModule>