MyBB Community Forums

Full Version: mod_rewrite
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am using mod_rewrite to display my MyBB pages in a cleaner format. They worked fine until I went to sleep. I woke up and now they are not working. Any idea as to why? A lot of stuff got added without me knowing, that could be it. Here is my .htaccess. Could it be a plugin?
# -FrontPage-

IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName artistichaven.net
AuthUserFile /home/artistic/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/artistic/public_html/_vti_pvt/service.grp

Options +FollowSymlinks
RewriteEngine on
    RewriteRule ^ADVERTISE.PHP$ misc.php?page=advertise [L,QSA,NC]
    RewriteRule ^RULES.PHP$ misc.php?page=rules [L,QSA,NC]
    RewriteRule ^GOALS.PHP$ misc.php?page=goals [L,QSA,NC]
    RewriteRule ^DONATEINFO.PHP$ misc.php?page=donateinfo [L,QSA,NC]
None of the code there is anything to do with MyBB... this isn't a MyBB .htaccess file.
(2011-01-23, 10:11 PM)MattRogowski Wrote: [ -> ]None of the code there is anything to do with MyBB... this isn't a MyBB .htaccess file.

Are you sure...? The only time I have touched the .htaccess is when I put in mod_rewrite. The plugins did not put those in?
Yes, I am sure, look at the htaccess.txt file that comes in a fresh install of MyBB, it looks nothing like this. Your host must have done something to cause this.