Forum Moderators: phranque
I tried:
RewriteRule ^(/1)$ /phones.php?c=$1 [L]
RewriteRule ^/1$ /phones.php?c=$1 [L]
RewriteRule ^(1)$ /phones.php?c=$1 [L]
it says the page cannot be found...
the host told me that the mod_rewrite is installed and functioning on all servers.
There was some stuff written in .htacess file by default so I wrote my rules after it direct.
so what should i try now?
If your rule is in your Web root directory .htaccess, then a proper form would be:
RewriteRule ^sub/(.+)$ /sub/file.php?c=$1 [L]
Jim