Quote:
Originally Posted by DragonByte Tech
Sorry, I don't understand this question. Can you please re-phrase it?
Fillip
|
My host doesn't allow .htacces file in wwwroot, it tells me to use a iirf.ini file like discussed.
Most is almost the same as .htacces only some rewrite rules are slightly different I believe.
My question is the following:
For example the other guy on this page his this is him .htacces
Code:
RewriteCond %{REQUEST_URI} !(admincp/|dbseocp/|modcp/|cron|mobiquo|forumrunner|api\.php)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ dbseo.php [L,QSA]
My website contains of many pages that start with for example competitions.php teams.php and also donate.php Do I have to add all of those in that line? Or only if I want them rewritten? So for example does mine becomes something like (except then for the codes that are used in a iirf.ini file.
Code:
RewriteCond %{REQUEST_URI} !(admincp/|dbseocp/|modcp/|cron|mobiquo|forumrunner|api|teams|donate|competitions\.php)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ dbseo.php [L,QSA]