julienmarie
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Fixing WordPress
In reply to: Rewrite dynamic url to permalinkFinally, I found the solution :
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{QUERY_STRING} . RewriteRule ^newsletter-(.+)$ http://www.datingwatch.org/newsletter-$1? [R=301,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>Hope this could help
Forum: Fixing WordPress
In reply to: Rewrite dynamic url to permalinkI’ve tried this way :
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{QUERY_STRING} . RewriteRule ^newsletter-([.]+)$ http://www.datingwatch.org/newsletter-$1? [R=301,L] </IfModule> # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressHere it changes nothing: 404 error… but no 500 error 🙂
Forum: Themes and Templates
In reply to: get_posts call only returning first post date?I experience exactly the same problem and i do not understand… my setup_postdata was there…but nothing appears
Forum: Themes and Templates
In reply to: get_posts call only returning first post date?I experience exactly the same problem and i do not understand… my setup_postdata was there…but nothing appears
Viewing 4 replies - 1 through 4 (of 4 total)