Proper clean URLs
This is in my .htaccess:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
I've enabled clean URLs on V2 and on hitting links like /profile/1/Admin it will say this: No input file specified.
This is on Dreamhost - any ideas why?
Edit: Also, if clean URL is enabled, 404 doesn't work either (/anythingrandomstuff) = No input file
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
I've enabled clean URLs on V2 and on hitting links like /profile/1/Admin it will say this: No input file specified.
This is on Dreamhost - any ideas why?
Edit: Also, if clean URL is enabled, 404 doesn't work either (/anythingrandomstuff) = No input file
0
This discussion has been closed.
Comments