Forum Moderators: phranque
So I did just that last night until I almost threw the bloody laptop out the window.
What I am trying to do is simple:
I have a subdirectory /de/ where I would like to place a .htaccess to rewrite all underlying urls to one dynamic page, where the querystring is the rest of the path. My closest attempt was:
RewriteEngine on
RewriteRule ^(.+)$ pages.php?url=$1
which gives me 'pages.php' as my $url?!
Is anybody kind enough to help me here?