@rusty.rosenbaum
To require the index.php URL in .htaccess file, you can use the following code:
1 2 3 |
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] |
This code will rewrite all URLs to the index.php file, except for the URLs that represent existing files or directories.
In the rewritten URL, the actual URL will be passed as a query parameter "url". For example, if the original URL is "http://example.com/test", it will be rewritten as "http://example.com/index.php?url=test".