Hello i have a simple rewrite rule wich worked before and is working on localhost already
but its not working on my cwp server:
RewriteEngine on
RewriteBase /
RewriteRule ^view/$ view.php
RewriteRule ^view$ view.php
RewriteRule ^view/(\w+)?$ view.php?cat=$1
when i try to access
site.com/view
its fine and shows view.php
but
site.com/view/test
will not get to view.php?cat=test