Discussion:
[TYPO3-english] RealUrl 404 Not Found for some pages
TSniper
2017-12-02 10:44:20 UTC
Permalink
Hi all,

I have installed realUrl and added all configuration and enable it, in the top navigation is working fine, in main navigation only home page is working: home.html but other pages are not working.

https://2017.dev.com/home.html
https://2017.dev.com/pageie/ > 404 not found

Can you please help me to find what i did wrong.

When i disable realurl all navigation is working fine.

<?php
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl']=array (
'2017.dev.com' =>
array (
'init' =>
array (
'appendMissingSlash' => 'ifNotFile,redirect',
'emptyUrlReturnValue' => '/',
),
'pagePath' =>
array (
'rootpage_id' => '1',
),
'fileName' =>
array (
'defaultToHTMLsuffixOnPrev' => 1,
'acceptHTMLsuffix' => 1,
'index' =>
array (
'print' =>
array (
'keyValues' =>
array (
'type' => 98,
),
),
),
),
'preVars' =>
array (
0 =>
array (
'GETvar' => 'L',
'valueMap' =>
array (
'en' => '1',
'fr' => '2',
'es' => '3',
'nl' => '4',
'it' => '5',
'zh' => '6',
),
'noMatch' => 'bypass',
),
),
'postVarSets' =>
array (
'_DEFAULT' =>
array (
'news' =>
array (
0 =>
array (
'GETvar' => 'tx_news_pi1[news]',
'lookUpTable' =>
array (
'table' => 'tx_news_domain_model_news',
'id_field' => 'uid',
'alias_field' => 'title',
'useUniqueCache' => 1,
'useUniqueCache_conf' =>
array (
'strtolower' => 1,
'spaceCharacter' => '-',
),
),
),
),
),
),
),
);

htaccess file :

<IfModule mod_rewrite.c>

# Enable URL rewriting
RewriteEngine On

RewriteRule ^/typo3$ - [L]
RewriteRule ^/typo3/.*$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* /index.php

</IfModule>
Doucet Mickaël
2018-01-02 17:28:16 UTC
Permalink
Hello,

I have the same problem,
Did you find a solution TSniper, or someone else ?

Thanks.
Jan Bednarik
2018-01-04 22:09:03 UTC
Permalink
Hey,

since it's over a month without any answer, why don't you try CoolUri
and if you have the same issue with it, then let me know, I'll help you
fix it.

Jan
Post by Doucet Mickaël
Hello,
I have the same problem, Did you find a solution TSniper, or someone else ?
Thanks.
Loading...