Quote:
Originally Posted by kjmz
Nope but it sure does make it look like that.
Has anyone else used .htaccess because I just can't figure it out. Is there anyway I can use http.conf?
Thanks because I can't figure this out.
|
Okay, I got the directory to redirect to the correct page but the URL doesn't stay Search Engine Friendly.
Here's my code so far:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^local_links/links/(.+)/(.+) /local_links.php?catid=$1&linkid=$2 [R]
RewriteRule ^local_links/links/(.+) /local_links.php?catid=$1 [R]
RewriteRule ^local_links/jump/(.+)/(.+) /local_links.php?action=jump&id=$1&catid=$2 [R]
RewriteRule ^local_links/jump/(.+) /local_links.php?action=jump&id=$1 [R]
The directory links to local_links/links/1 but it will redirect to locallinks.php?catid=1
Anyone know what to do?