“So setzen Sie den Domain -Namen auf Localhost Linux Ubuntu Xampp” Code-Antworten

So setzen Sie den Domain -Namen auf Localhost Linux Ubuntu Xampp

>>> cutshort of the youtube video
we need to edit three files 
1) /opt/lampp/etc/httpd.conf
-> in this file search httpd-vhosts.conf
and uncomment it 
like this
(
# Virtual hosts
Include etc/extra/httpd-vhosts.conf
)






2) then goto /opt/lampp/etc/extra/httpd-vhosts.conf
and add these following lines
<VirtualHost *:80>
    DocumentRoot "/opt/lampp/htdocs/projectFolderName"
    ServerName projectDomainName
		<Directory "/opt/lampp/htdocs/projectFolderName">
			Require all granted
		</Directory>
</VirtualHost>

(
replace projectFolderName with your project folder name 
and projectDomainName with the domain name you want to have

)

3) goto /etc/hosts
add this line
127.0.0.1 projectDomainName

don't forget to open all these files with sudo and save them , 
restart the xampp and that's it ! enjoy
uzii

So verwenden Sie den benutzerdefinierten Domänennamen anstelle von Localhost auf XAMPP für Linux

here is the youtube link for you 

add custom domain name instead of localhost/yourprojectname/ 
click on the link below 
https://www.youtube.com/watch?v=2UbpmSNr48c
uzii

Ähnliche Antworten wie “So setzen Sie den Domain -Namen auf Localhost Linux Ubuntu Xampp”

Fragen ähnlich wie “So setzen Sie den Domain -Namen auf Localhost Linux Ubuntu Xampp”

Weitere verwandte Antworten zu “So setzen Sie den Domain -Namen auf Localhost Linux Ubuntu Xampp” auf HTML

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen