Dear Friends,
I am using Laravel 10 , my url is http://10.50.192.128/ksrtcCareers/public/index.php/ReceivedApplns
I need to remove "/public/index.php/" part . I have no .htaccess in my root folder. So I added in root folder of
/var/www/html/ksrtcCareers with content as
[Thu Nov 02 16:03:15.412009 2023] [core:error] [pid 206214:tid 206403] [client 10.64.241.20:55062] AH00124: Request exceeded the limit of 100 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
I added a virtualhost in /etc/httpd/conf.d/mylaravelapp.conf
with content as
<VirtualHost *:80>
ServerName 10.50.92.128
ServerAlias *
DocumentRoot /var/www/html/ksrtcCareers/public
<Directory /var/www/html/ksrtcCareers/public>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
@tray2 I don't think your point is met my target .