invites and htaccess
when sending invites in v2 its assuming i have htaccess setup and its ommitting the .index.php ... so all the invites ive sent are useless because the links dont work. I'm unable to install on a sub directory because i cant get the htaccess to work properly from the get go.... and ive been playing with the htaccess file all night with no luck. Host is godaddy and default htaccess looks like this
<IfModule mod_rewrite.c>ive tried adding in the rewritebase /.. and adding in ? before the $ .. ive added all sorts of rewriterule and i cant figure this out to save my life.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>
0
Comments