Forum Moderators: phranque

Message Too Old, No Replies

Redirect issues.

         

Jesse_Smith

10:00 pm on Apr 7, 2024 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Depending on the browser, sometimes it works, some times it doesn't...


Options +FollowSymlinks
Options +Indexes
Options +Includes
RewriteEngine on
#Times out, dead link, redirects, or good link depending on browser.
Redirect /fake-file-name-here https://www.example.com/folder/file-file-file-file-file

#Creates a dead link. adds / to the final URL
Redirect /fake-file-name-here/ https://www.example.com/folder/file-file-file-file-file

ErrorDocument 404 http://www.example.com/
RewriteCond %{HTTP_HOST} ^example.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]