Ahum read the above (uch, the page beforeopawaldburger wrote: @Rolf: Perfect! That's exactly how it should work! What did you do or not do?

Did you leave all the changes, or did you set it back again? It is a combination of...
®
Ahum read the above (uch, the page beforeopawaldburger wrote: @Rolf: Perfect! That's exactly how it should work! What did you do or not do?
Code: Select all
# Attempt to override some php settings, these settings may be helpful on some hosts if your
# default configuration does not meet CMS's minimum requirements, and your host
# has given your account appropriate permissions
#php_value upload_max_filesize "10M"
#php_value session_save_path "tmp/cache"
#php_flag magic_quotes_gpc Off
#php_flag register_globals Off
#php_flag session.use_trans_sid Off
# (this is important, so uncomment if your host permit)
Options -Indexes
ServerSignature Off
#
#Options +FollowSymLinks
#
<IfModule mod_rewrite.c>
RewriteEngine on
#
#Sub-dir e.g: /cmsms
RewriteBase /
#
# Link to http://www.website.com then redirect to http://website.com
RewriteCond %{HTTP_HOST} ^www\.atmytestsite\.com [NC]
RewriteRule ^(.*)$ http://atmytestsite.com/$1 [L,R=301]
#
# 301 Redirect all requests that don't contain a dot or trailing slash to
# include a trailing slash
# but ignore POST requests.
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteCond %{REQUEST_METHOD} !POST$
RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]
#
# Rewrites urls in the form of /parent/child/
# but only rewrites if the requested URL is not a file or directory
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
</IfModule>
Code: Select all
$config['root_url'] = 'http://atmytestsite.com';
It works for me... Perhaps you have to do a CRTL F5 to refresh your browser...opawaldburger wrote: It would be SO interessting where the mistake is. Why does it work woth your site...? It's a miracle![]()
That is what Dr. CSS said the setting in the config.php root_url.opawaldburger wrote: I also noticed something different. When I add the neccessary lines in the .htaccess file to remove the www, the link for the add-entry-button still is shown with www. On your site, the link is shown without www. Added 2 screenshots!