I got another question about .htaccess:
I want every param which is given to my homepage (http://some.com/blabla) not to look for the folder “blabla”, it should be automatically (immaterial which param, could be blublu too) redirected to a specific file.
How can I do this?
Thx for help
EDIT: It is important too that I know the given param after the redirecting, so if I could solve it by a redirect into a php-file with a GET-Param, this would be good…
Just post this line to .htaccess
RewriteRule ^(.*)$ yourfile.php?$1 [L]
and “blabla” and “blublu” will now forwarded to yourfile.php
The whole .htaccess file:
In this case, you must have “yourfile.php” in the same directory as .htacces file.