thank you for reply
.
when i do "disable_path_info =off " it show me message “No input file specified” … so i made htaccess to configure Apache to
rid the question mark … but it’s not work … the URL was still appear
like “mysite/ojs/?journal=yjmp”;
my config.inc.php and "config.TEMPLATE.inc.php is
.
disable_path_info =on
base_url[index] = http://www.ust.edu/ojs
base_url[myJournal] = http://www.ust.edu/ojs
restful_urls = on
my htaccess …
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?journal=$1 [NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [R=301,L]
.
.
.
.
please help me :(pensive: