Hi everyone, able to resolve above issue with below rules:
RewriteCond %{REQUEST_URI} ^example.com(.*).(?!\1$)
RewriteRule ^.*$ - [R=404,L]
With Regards,
Venkatesh
On Fri, Oct 12, 2018 at 8:39 AM alchemist vk <[email protected]> wrote:
> Hi All,
> I have one test uri 'http://example.com/test1.test2'. How I can
> fetch uri components test1 and test2 and compare them via RewriteCond
> directive?..
>
> I tried like below:
> RewriteCond {REQUEST_URI} http://example.com/(.*)\.(.*)
> RewriteCond $1!=$2
>
> But getting syntax error saying $1!=$2 is not proper syntax..
>
> With Regards,
> Venkatesh
>