Hello All.
I would like to ask how to set a own domain to OCS(open Conference System).
sample: yourdomain.com/conference/1stintconference/index/index.ph , instead of home conference: yourdomain.com/conference/index.ph;
it’s been nice if each conference has own URL that set;
-regards;
To do this, you will need to modify config.inc.php’s base_url settings for each conference, and enable RESTful URLs via mod_rewrite (or similar).
; Base URL override settings: Entries like the following examples can
; be used to override the base URLs used by OCS. If you want to use a
; proxy to rewrite URLs to OCS, configure your proxy's URL here.
; Syntax: base_url[conference_path] = http://www.myUrl.com
; To override URLs that aren't part of a particular conference, use a
; conference_path of "index".
; Examples:
; base_url[index] = http://www.myUrl.com
; base_url[myConference] = http://www.myUrl.com/myConference
; base_url[myOtherConference] = http://myOtherConference.myUrl.com
; Generate RESTful URLs using mod_rewrite. This requires the
; rewrite directive to be enabled in your .htaccess or httpd.conf.
; See FAQ for more details.
restful_urls = Off
To configure RESTful URLs you will need to add code to your webserver configuration (for example, mod_rewrite in Apache). There is an old conversation on this on the previous forum:
https://pkp.sfu.ca/support/forum/viewtopic.php?f=2&t=2616
See also this parallel in OJS and IIS:
I have OJS installed and 2 journals hosted.
The domains we would like to work are as follows:
main domain is the one that shows the list of all hosted journals and how we get to admin (this works fine)
separate domain that we would like to point to a specific journal (problems)
the main domain works as intended and everything works fine. It is on the domain that is named after the journal that causes us grief. That one will work, but it will not load the css and any images.
Our setup is O…