Skip to content

Tag: php

Preventing http access in Laravel 8

I have a question about force using HTTPS in laravel, i’ve added a condition inside AppServiceProvider.php, creating a middleware and modifying the .htaccess file. But I can still access the http page. Is there any other way to get laravel to redirect to https instead of http, and how to prevent user to…

PHP Regex the nested section based on defined parent

I am trying to match a nested content section of the config based on the alias. I have the base prototype working for matching single aliases over here: https://regex101.com/r/1vwKsx/1 (section correctly matched to: ‘template_path_stack’ =>) HOWEVER, I want to select a section (which is re-used…

php loop and tag to go to another page [closed]

Closed. This question needs debugging details. It is not currently accepting answers. Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question. Closed 6 months ago. Improve this question Hi I…

How to remove .php and replace ? with / in htaccess

How do I remove .php and replace ? with / at the same time. I have I want it to be called from the browser like this: In replacing ? data, I want it to be compatible with dir. Like in dir, I have: So, if the user calls http://localhost/testingproject/user, alone, there is no need to parse ? to /

Creating central config file with hundreds of defined names

I want to create a central config file, with a few hundred of defined setup configure names, that would be included with something like: I want to write the php code in the config file as follows: So when the above function is included with include file.php, I want function to all respond as if its the same a…