My OXID store starts on localhost with http://localhost/source, but I just want it to start with http://localhost.
OXID starting on localhost/source, I want to start it at localhost
142 Views Asked by Alihan Şişman At
1
There are 1 best solutions below
Related Questions in XAMPP
- Move file or directory to C:\\Windows using PHP - XAMPP
- No responses from google places text search api
- Xampp redirects to /xampp
- Can't use subdomain in Chrome using Apache (XAMPP)
- Object not found! The requested URL was not found on this server. PHP file not being accessed
- Fatal error: Call to undefined function sqlsrv_connect() in C:\xampp\htdocs
- Which directory should I locate the PHP project in to make it work with XAMPP?
- Xampp Config Files AWS
- Can't connect Go to XAMPP MySQL
- Read/Edit MYSQL xampp database from drupal
- How to setup FTP on xampp
- Notice: Undefined index: variable
- How to connect to Flask-WebSocket server?
- Unable to connect to localhost Apache Ubuntu
- WAMP or XAMPP alternative that has Imagick already included
Related Questions in LOCALHOST
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
- Connect to localhost:3000 from another computer | expressjs, nodejs
- How do you run a javascript outside of the localhost directory with requirejs?
- error in python mysql where clause
- To connect to Remote Desktop connection via local system
- Joomla password reset not working
- multiple submit button in python
- Angular's $cookies only work on 'localhost'
- Why can't I connect to a local server using phantomjs / casperjs
- Connecting to localhost:8080 using Google Chrome
- Fetching data from local mysql using angular not working
- Vagrant localhost issue
- YouTube IFrame API - Untrusted Origin: Null
- R rvest connect with local host
- Unable to connect to localhost Apache Ubuntu
Related Questions in OXID
- OXID turn "More" in categories off to show more categories
- Selecting value corresponding with MAX value of a group
- OXID: Too many redirects in frontend
- Oxid - Get product categories based on article id
- Oxidshop - Get a product url
- OXID eShop - Autocompletion in Eclipse
- Oxidshop - Custom field on basket page
- OXID - Custom controller not working through address bar
- Phpstan Class_parent not found
- DDEV Integration Zendguard Loader
- Oxid's testing library cannot open file AllTestsUnit.php
- PHP extensions for vscode can't handle code
- Oxidshop - Override changebasket function in BasketComponent
- Not loading a template
- OXID starting on localhost/source, I want to start it at localhost
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You need to change the DocumentRoot setting in your httpd.conf file. You also have to change the corresponding Directory Setting in the same file. Both should point to the "source" directory. How do I change the root directory of an Apache server?
In your Oxid installation you then have to change the "sShopURL" setting in config.inc.php to http://localhost/, and additionally you have to change "RewriteBase /source" to "RewriteBase /" in your .htaccess file (both of these files are in the "source" directory of your shop).
Remember that you have to remove the write protection from the config.inc.php file in order to edit it. One more Tip: if you are using xampp you can edit the httpd.conf file and restart apache in the xampp control panel.