Trying to get URL's like this:
To look like this:
Here's my .htaccess file:
Using that, my URL's don't look any different. They still FUGLY.
Can someone please tell me where I fucked up. :error:
Code:
http://www.SomeDomain.tld/index.php?sub=123&sub2=3234&sub3=something+else
To look like this:
Code:
http://www.SomeDomain.tld/123/3234/something+else
Here's my .htaccess file:
Code:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{http_host} ^SomeDomain\.co\.uk [nc]
RewriteRule ^(.*)$ http://www.SomeDomain.co.uk/$1 [r=301,nc]
RewriteRule ^/([^/]+)/([^/]+)/([^/]+)/?$ /index.php?cam=$1&dir=$2&pg=$3 [L]
ErrorDocument 400 /go.php?link=400_error
ErrorDocument 401 /go.php?link=401_error
ErrorDocument 403 /go.php?link=403_error
ErrorDocument 404 /index.php
ErrorDocument 500 /go.php?link=500_error
Using that, my URL's don't look any different. They still FUGLY.
Can someone please tell me where I fucked up. :error: