18 February 2023

Redirect a URL to a file using .htaccess

Using Redirect rules:

#Redirect "/thename" "/path/to/file.txt"
#Redirect "/thename" "/path/to/file.txt"

Using a RedirectMatch rule:

RedirectMatch 301 "^/thename/?$" "/path/to/file.txt"

Using Rewrite Rules:

#RewriteEngine on
#RewriteRule "^thename/?$" "/path/to/file.txt" [L]

No comments:

Post a Comment