Domanda

Come posso 301 reindirizzare qualsiasi URL che inizia con un numero compreso tra 1-9999, ad esempio

domain.com/12/something/anotherthing

domain.com/378/product/widgets

domain.com/2560

È stato utile?

Soluzione

RewriteCond %{REQUEST_URI} ^/([0-9]+)/?(.*)
RewriteRule (.*) http://domain.com

dovrebbe funzionare, ma non testato, potrei essere frenato alcune regole .htaccess qui.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top