Permalink Structure: Make an exception!!!
-
Hello friends!
My permalink structure works fine.
I have a page called “profile” and the permalink works with
https://myurl.com/profileNow all i want to have the following integrated in my
permalink structure:
If somebody calls https://myurl.com/profile/david/
he has to be “redirected” via mod_rewrite to
https://myurl.com/profile/?username=david
so that i can GET the parameter.I have to include it into my existing configuration:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>It would be very nice if you have some suggestions.
Thank you VERY Much!
- The topic ‘Permalink Structure: Make an exception!!!’ is closed to new replies.