CodeIgniter Forums
problem with .htaccess file in godaddy subdomain - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: problem with .htaccess file in godaddy subdomain (/showthread.php?tid=55247)



problem with .htaccess file in godaddy subdomain - El Forum - 10-17-2012

[eluser]psychoder[/eluser]
i have a website built using CodeIgniter with Modular extension... and htaccess to eliminate index.php in the url... now the problem is it won't work at a subdomain, but in a folder inside the domain it works...how would i figure out the correct .htaccess file..


Code:
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On

<Files .*>
Order Deny,Allow
Deny From All
</Files>

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule .* index.php/$0 [L]
</IfModule>
Options -Indexes



problem with .htaccess file in godaddy subdomain - El Forum - 10-17-2012

[eluser]Mr. Pickle[/eluser]
And with this:

Code:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ index.php/$1 [L]