I have a site in wordpress in which a page is showing questions based on its ID.
http://example.com/index.php/question/?questionid=9&title='how-to-rewite-htaccess' I am the beginner to php I'm not able to graps other examples found on stackoverflow.com
Here's my .htaccess code
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] RewriteRule ^/question/([^/]*)/([^/]*)/$ /question/?questionid=$1&title=$2 [NC,L] </IfModule> But this is not working. please tell where is error.