Moderators: jmacgreg, michael, John, vgabler
#pkp rewrites
DirectoryIndex index.html index.php
RewriteBase /
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /index.php/$1
#pkp admin fix
RewriteRule inicio/admin/(.*) /index.php/index/admin/$1
http://MYDOMAIN/ojs/index.php/NEWJOURNAL -- > http://MYDOMAIN/ojs/NEWJOURNALbase_url = "http://MYDOMAIN/ojs"
...
base_url[index] = http://MYDOMAIN/ojs
base_url[NEWJOURNAL] = http://MYDOMAIN/ojs/NEWJOURNAL
Options +FollowSymLinks
RewriteEngine On
RewriteBase /ojs
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
# Turn Rewrite Engine on
RewriteEngine On
# Set the base for relative paths
RewriteBase /
# Check for www and remove
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
# Do not enable rewriting for files that exist
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Remove index.php
RewriteRule ^(.*)$ index.php [PT,L]
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName domain.org
AuthUserFile /home/wide02/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/wide02/public_html/_vti_pvt/service.grp<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>define('INDEX_SCRIPTNAME', 'index.php');
define('INDEX_SCRIPTNAME', '.');
RewriteRule ^(.*)$ index.php/$1 [QSA,L]RewriteRule ^(.*)$ index.php/jirc/$1 [QSA,L]Return to OJS Editorial Support and Discussion
Users browsing this forum: No registered users and 3 guests