1
I have 3 url:
http:/www.mypage.com/modules/tiny/index.php?id=1 (about)
http:/www.mypage.com/modules/tiny/index.php?id=2 (products)
http:/www.mypage.com/modules/liaise/index.php?form_id=1 (contact)
I have the following code in .htaccess :
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteRule ^about(.*) modules/tiny/index.php?id=1 [L]
RewriteRule ^products(.*) modules/tiny/index.php?id=2 [L]
and works very well
http:/www.mypage.com/about/
http:/www.mypage.com/products/
But I have trouble following:
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteRule ^about(.*) modules/tiny/index.php?id=1 [L]
RewriteRule ^products(.*) modules/tiny/index.php?id=2 [L]
RewriteRule ^contact(.*) modules/liaise/index.php?form_id=1 [L]
For http:/www.mypage.com/contact/ i get :
module does not existAny help or suggestions, I just only interested in those three URL to implement SEO