JoeAtRevolutionUnltd
Programmer
I am trying to set up an htaccess file on my testing server to take my urls as:
and write them as:
Going to gets rewritten fine, But any subpages go to
Can anyone help me out?
Here is the code I am using.
and write them as:
Going to gets rewritten fine, But any subpages go to
Can anyone help me out?
Here is the code I am using.
Code:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([0-9a-zA-Z-]+)/?([0-9a-zA-Z-]+)?/?([0-9a-zA-Z-]+)?/?([0-9a-zA-Z-]+)?/?([0-9a-zA-Z-]+)?/?$ index.php?s1=$1&s2=$2&s3=$3&s4=$4&s5=$5 [QSA,L]