Posts by Michael Fillip • 1 point
1 post
-
0
votes2
answers391
viewsA: Use URL rescrita as array in . htaccess
One option you can do is to set the .htaccess as follows. RewriteEngine On RewriteCond %{SCRIPT_FILENAME} !-f RewriteCond %{SCRIPT_FILENAME} !-d RewriteRule ^(.*)$ index.php?url=$1 Where it will be…