I’m using wordpress pretty permalinks, my .htaccess file looks like this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /nafham/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /nafham/index.php [L]
</IfModule>
# END WordPress
I’m using a form that displays the index page with url variables, like this:
http://www.nafham.com/?edu_year_selectionreal=79&semester_selectionreal=15&subject_selectionreal=80
I’d like to have the url to be displayed like this:
http://www.nafham.com/79/15/80
Is it possible to do so? and what’s the best way of doing this in order not to make things go wrong with the rewrite conditions wordpress is Already applying?
as you have the rewrite already setup all you need to do is parse the url in your index.php