Error - Cornerstone - Not Found

Hi there,

when I try to load cornerstone, I’m getting a Not Found erros … that was after I changed the permalinks.

"Not Found
The requested URL /x/ was not found on this server.

Apache/2.4.29 (Ubuntu) Server at www.sitename.com.br Port 80"

The mod_rewrite is installed and running on the server.

Any idea?

Thanks

Hello Andre,

This usually happens when your .htaccess file is not writable. To resolve your issue, you will need to login through FTP and edit the .htaccess file. You need to insert the code below:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

Please let us know how it goes.

Hi @Jade,

thank you, it’s working now… :slight_smile:

Glad to hear it’s sorted.

Have a nice week ahead!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.