1
Xoops is having troubles in finding my modules after I use Mod_Rewrite to rewrite my URL's.
This .htaccess file is working:
Options +FollowSymlinks
RewriteEngine On
RewriteRule ^hello/world.html$ /test/helloworld.php [QSA,L]
Unfortunately, if I do this to redirect a XOOPS URL:
Options +FollowSymlinks
RewriteEngine On
RewriteRule ^contact/contact.html$ /modules/contact/index.php?sel_lang=english [QSA,L]
then I get the following message if I go to mydomain/contact/contact.html :
Quote:
Selected module does not exist!
This happens with any module.
Does anybody have a solution?
(I do want to use [QSA,L].)