Quote:
Originally Posted by Bubble #5
For the htaccess file, shouldn't:
HTML Code:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^view_(.*).htm$ view.php?pg=$1
Be written as:
HTML Code:
RewriteCond %{REQUEST_FILENAME} !-f [L]
RewriteRule ^view_(.*).htm$ view.php?pg=$1 [L]
Just wondering :ermm:
|
Unless you have a already complicated .htaccess, I don't think L flag is necessary but if you have other rewrite rules in your .htaccess, yes you can add it as you pointed out.