Herzlich willkommen im SEO Forum der ABAKUS Internet Marketing GmbH
registrieren registriertes Mitglied
Per php echo erhielt ich genau denselben Pfad:Hanzo2012 hat geschrieben:Log?
Sicher, dass du es genau so reinkopiert hast?
Und dass der Pfad wirklich so lautet (evtl. hast du was verändert, damit wir nicht sehen, um welche Domain es sich handelt?)?
Hanzo2012 hat geschrieben:Zeig nochmal die .htaccess deiner Subdomain bitte.
Code: Alles auswählen
DirectoryIndex default.shtml default.html index.shtml index.html index.php
ErrorDocument 404 https://www.domain.com/error/404-file-not-found.html
RewriteEngine on
RewriteRule "^/ads\.txt$" "/home/.sites/57/site286/web/ads.txt"
Nee, das liegt daran, dass Alias in .htaccess generell nicht erlaubt ist.elmex hat geschrieben:Das mit Alias nicht erlaubt liegt an den AllowOverwrite Einstellungen.
elmex hat geschrieben: Im Zweifel mal die komplette .htaccess mal posten, dann können wir vll. noch helfen. Oder gleich jemand machen lassen, der es kann
Code: Alles auswählen
DirectoryIndex default.shtml default.html index.shtml index.html index.php
ErrorDocument 404 https://www.domain.com/error/404-file-not-found.html
RewriteEngine on
RewriteRule ^ads\.txt$ "https\:\/\/www\.domain\.com\/ads\.txt" [R=301,L]
# Deflate Compression by FileType
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/atom_xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE application/x-shockwave-flash
</IfModule>
# turns cache on for 1 month
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css "access plus 1 month"
ExpiresByType text/javascript "access plus 1 month"
ExpiresByType text/html "access plus 1 month"
ExpiresByType application/javascript "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 month"
</IfModule>
<ifmodule mod_headers.c>
<filesmatch "\\.(ico|jpe?g|png|gif|swf)$">
Header set Cache-Control "max-age=2592000, public"
</filesmatch>
<filesmatch "\\.(css)$">
Header set Cache-Control "max-age=604800, public"
</filesmatch>
<filesmatch "\\.(js)$">
Header set Cache-Control "max-age=604800, private"
</filesmatch>
</ifmodule>
Nee, das ist Quatschheinrich hat geschrieben:Vermutlich liegt es wirklich daran, dass man nicht aus einer schon vom Server ausgelieferten Subdomain zurück in einem internen Pfad auf die Domain kommen kann!
Mag sein ... Man weiß es nicht.heinrich hat geschrieben:Mir geht es ohnehin nur darum, dass die Bots eine ads.txt kriegen, auch wenn die immer von der Root kommt. Vielleicht merken sie das nicht, sondern sind mit der langen Liste der Advertiser zufrieden
Das mit dem [P] war aber eine absolute URL, genau wie bei deiner (funktionierenden) externen Weiterleitung.heinrich hat geschrieben:Ich habe den Verdacht, dass vom Server bei der Auslieferung der Subdomain die Base umgeschrieben wird - und das eben dann verhindert, dass man mit einem relativen Pfad auf die ursprüngliche Base zurück kann.