- Home
- Categorie
- La Community Connect.gt
- Tutto sulla Community
- semplice rewrite
-
semplice rewrite
salve, dovrei fare un semplice rewrite ma non ne vengo a capo.
url originale: sito/html/modules/news/article.php?storyid=20
che mi deve portare a:
sito/html/modules/AMS/article.php?storyid=20il dominio è lo stesso cambia solo da news ad AMS. La querystring ovviamente è dinamica, quindi vale per tutte le pagine che finiscono con storyid.
ho tentato invano in questo modo:
RewriteEngine On RewriteCond %{REQUEST_URI} ^/html/modules/news/article\.php$ RewriteCond %{QUERY_STRING} ^id=([0-9]*)$ RewriteRule . sito/html/modules/AMS/article\.php$ [R=301,L] ```grazie veramente.
-
Ciao geggino,
prova con questo htaccessRewriteEngine On RewriteCond %{REQUEST_URI} ^/html/modules/news/article.php$ RewriteCond %{QUERY_STRING} storyid=([0-9]*) RewriteRule (.*) /html/modules/AMS/article\.php [R=301,L]