Hi, I have the following in my htaccess file for my url friendly urls. The problem is that with this it is not allowing analytics to verify the site or work. When i remove the htaccess file it works fine. RewriteEngine On RewriteRule ^([a-zA-Z0-9-_]+)\.html$ index.php?title=$1 RewriteRule ^properties/([a-zA-Z0-9-_]+)/([a-zA-Z0-9-_]+)/([a-zA-Z0-9-_]+)/([a-zA-Z0-9-_]+)/([a-zA-Z0-9-_]+)\.html$ index.php?title=$1 Code (markup): Can someone please advise. Cheers, Adam
change [a-zA-Z0-9-_]+ to [^/]+ so all chars are allowed until / is found this is one from my htaccess ([^/]+)/([^/]+)/([^/]+)/([^/]+)