21281 Posts in 5729 Topics by 2600 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 718 Views |
-
Pages not affected by SS in the subfolder?

5 April 2011 at 7:53am
I have the SS based site in the root of the server space. Can I add a folder with the pages not affected by SS in the root folder? If the SS page open in domain.com, can I make a subfolder and get a page without SS opened in domain.com/subfolder?
-
Re: Pages not affected by SS in the subfolder?

5 April 2011 at 5:51pm
In your root .htaccess file, add the following 2 lines after Rewrite Engine On:
RewriteRule ^subfolder$ subfolder/ [R,L]
RewriteRule ^subfolder/(.*)$ subfolder/$1 [L]Then in your subfolder create a new .htaccess file with the following code:
<IfModule mod_rewrite.c>
RewriteEngine Off
</IfModule> -
Re: Pages not affected by SS in the subfolder?

5 April 2011 at 5:56pm
Actually, all you need is the new .htaccess file in subfolder with the following:
<IfModule mod_rewrite.c>
RewriteEngine Off
</IfModule>
| 718 Views | ||
|
Page:
1
|
Go to Top |


