I have my site in this url which has the content I want to put here. The second link is a CNAME located in the same server as URL 1 that points to another server (the real one).
But just the homepage is shown, when you click a link, a 404 is shown.
UPDATE : When configuring the default "p?123" option it works.
My .htaccess, the server has mod_rewrite activated
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
How can I solve this? Thanks!
