danyboy2010
02-04-2007, 01:05 PM
I have to deal with a htaccess file and have some problems
The code i posted at botton makes url friendly www.site.com/category/hosts in main.php?category=host
How i can make it no to apply the rule on some specific folders like forum , articles where i have to add separate scripts
Thanks
RewriteEngine on
Options +FollowSymLinks
RewriteCond %{REQUEST_URI} !(main\.php)
RewriteCond %{QUERY_STRING} !(direct)
RewriteRule (.*) main.php?page=$1 [PT]
RewriteCond %{QUERY_STRING} (direct)
RewriteRule (.*) $1 [PT]
The code i posted at botton makes url friendly www.site.com/category/hosts in main.php?category=host
How i can make it no to apply the rule on some specific folders like forum , articles where i have to add separate scripts
Thanks
RewriteEngine on
Options +FollowSymLinks
RewriteCond %{REQUEST_URI} !(main\.php)
RewriteCond %{QUERY_STRING} !(direct)
RewriteRule (.*) main.php?page=$1 [PT]
RewriteCond %{QUERY_STRING} (direct)
RewriteRule (.*) $1 [PT]
