Associate
- Joined
- 11 Jun 2004
- Posts
- 42
- Location
- Staffordshire
Hi guys this is driving me crazy. If any of you htaccess gods out there fancy helping me out please do! Right...
Ive coded the links to look like this - so this is the format im after:
http://www.mysite.com/view_value/all/1/1
Format including querystring http://www.mysite.com/view_value.php?tn=all&order=1&page=1
Im getting the following 404 error:
The requested URL /view_value/all/1/1 was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
My htaccess file looks like:
Options +FollowSymLinks
RewriteEngine on
RewriteRule view_value/(.*)/(.*)/(.*)/$ /view_value.php?tn=$1&order=$2&page=$3
Any ideas where im going wrong at all?
Thanks in advance!!
Ive coded the links to look like this - so this is the format im after:
http://www.mysite.com/view_value/all/1/1
Format including querystring http://www.mysite.com/view_value.php?tn=all&order=1&page=1
Im getting the following 404 error:
The requested URL /view_value/all/1/1 was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
My htaccess file looks like:
Options +FollowSymLinks
RewriteEngine on
RewriteRule view_value/(.*)/(.*)/(.*)/$ /view_value.php?tn=$1&order=$2&page=$3
Any ideas where im going wrong at all?
Thanks in advance!!