5.3.2 Pretty URL issue
Permalink
After enabling Pretty URL, offered code for .htaccess doens't work.
While 5.3.1 I had this one fixed as shown and it was working.
#Pretty URL fix
Now, with 5.3.2 is not working again.
Can someone please help?
How .htaccess file should look like to have pretty URLs enabled?
While 5.3.1 I had this one fixed as shown and it was working.
#Pretty URL fix
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !(index\.php) RewriteRule .* index.php [L] </IfModule>
Now, with 5.3.2 is not working again.
Can someone please help?
How .htaccess file should look like to have pretty URLs enabled?
What you gave me is the code offered by Concrete 5 and that is not working.
Result I get in browser is: "No input file specified."
The other code I've provided was working with 5.3.1 version and was found here >http://www.concrete5.org/community/forums/customizing_c5/pretty_url...
When I "rediscovered it" ... I've remembered to fix request.php file as stated there. :)
Thank you
Result I get in browser is: "No input file specified."
The other code I've provided was working with 5.3.1 version and was found here >http://www.concrete5.org/community/forums/customizing_c5/pretty_url...
When I "rediscovered it" ... I've remembered to fix request.php file as stated there. :)
Thank you
It looks like the 5th line in your code is different..