I need class or function which will generate link using rules from .htaccess file.
For example I have this in .htaccess
Code:
RewriteEngine On
RewriteRule ^profile/([^/]*)$ /profile.php?id=$1 [L]
When I call function like this
Code:
echo link('profile.php?id=1');
it should show