Forum Moderators: phranque
http://localhost/mybb/index.php?url=login/register
Options -MultiViews
RewriteEngine On
RewriteBase /mybb/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L] `http://localhost/mybb/login/register` which is absolutely fine now I am trying to modify the url which will look like this http://localhost/mybb/login/register/step/1 http://localhost/mybb/index.php?url=login/register&step=1 RewriteRule ^(.+)$ index.php?url=$1&step=1$ [QSA,L]