views:

18

answers:

0

How to rewrite rule using mod_rewrite - so all links which starts with "/share/" like this one "www.domain.com/share/XXX/YYY/ZZ..." will be showed as emtpy page?

I tried this

RewriteCond %{REQUEST_URI} ^/share/(.*)
RewriteRule (.*) empty.html [L]

But it doesn't seem to work Please help