Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
Sexual Content
Violent or Repulsive Content
Hateful or Abusive Content
Harmful Dangerous Acts
Child Abuse
Spam
Infringes My Rights
htaccess hidden redirect:
To redirect a page using htaccess use "Redirect" keyword as:
Redirect /index.php http://hscripts.com/index.php
To hidden redirect the page, use:
RewriteEngine On
RewriteRule ^test.html index.html [L]
For hidden redirect in htaccess use the flag [L].
If you use [L], the page will be redirected but the url wont change ie, hidden redirect. Redirect condition:
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/test/(.*)/index.php
RewriteRule ^test/(.*)/index.php http://hscripts.com/test/test1.php?fname=$1 [L]
Important Note: Whenever you use "RewriteCond" & "RewriteRule", you must add the line,
RewriteEngine On
Rewrite rules will work only if the RewriteEngine is On.