I already read in the forum about the problems related to mod_rewrite when we register in OAI, so I used this htaccess code
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?journal=$1 [QSA,L]
and also modified in "config.inc.php" and "config.TEMPLATE.inc.php" to
base_url[index] = http://www.ust.edu/ojs
base_url[myJournal] = http://www.ust.edu/ojs
restful_urls = on
But the result of that it deletes just "index.php" from URL and single question character "?" is still in the URL like " http://www.ust.edu/ojs/?journal=yjmp "which cause the problem.I want the URL to be like " http://www.ust.edu/ojs/ yjmp " Please help me Thanks