I need to redirect a page like this:
http://example.com/clients/themes?domain=localhost.com
this link should be redirected to skin.php which is in the same directory.
Can any one help me? Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Enable mod_rewrite and .htaccess through
httpd.confand then put this code in your.htaccessunderDOCUMENT_ROOTdirectory:This will internally forward your request to
/clients/skin.phpstripping out query string. If you want query string as well then remove?afterskin.php.