I have a simple issue to resolve. Every time I access one of the URLs explicitly defined in .htaccess (used by Joomla), I’m getting 403 Forbidden message.
Details about my setup:
- I’m using shared hosting
- Joomla is installed in the root folder
- my newly created page is located in
/new/products.php .htaccessis the default one supplied by Joomla with one additional rule:rewriterule $/new/products^ /new/products.php [R=301,L]Options +FollowSymLinksis commented out, but switching it on doesn’t change anything
Each time I access mysite.com/new/products I’ getting:
Forbidden
You don’t have permission to access /new/products/ on this server.
Additionally, a 404 Not Found error was encountered while trying to
use an ErrorDocument to handle the request.
Any ideas?
In the end I simply removed old site, cleared all Jooml entries in
.htaccessand didRewriteBaseto point to my directory. The problem is no more.