Questions tagged as 'reescritura-url'

1
answer

htaccess rewrite directory url to file.html

Hi, I'm trying to redirect and / or rewrite a set of URLs. Example: misitio.com/categoria1 --> misitio.com/categoria1.html For now I have this, which correctly rewrites this first level: RewriteRule ^categoria1/(\w+)$ $1.html [QSA,L...
asked by 30.01.2016 / 21:52
2
answers

Doubt wordpress and friendly links

I've been working on a website for a couple of days and I want all the urls to be friendly, that is, no url is so subcategoria/?type=ejemplo1 , the problem is that I also want all the custom data types and I can not think of it Another way...
asked by 12.05.2016 / 09:40
1
answer

laravel remove index.php from the url

I have a site where I can access with https://www.pagina.com but also with https://www.pagina.com/index.php I would like NOT to be able to access with that index.php (seo questions) my .htaccess: <IfModule mod_rewrite.c> &...
asked by 03.12.2017 / 01:52
1
answer

Help with Friendly Url with parameter

I am looking for help with friendly url for the moment I can access the URLs in this way www.mydomain.com/demo-1 www.mydomain.com/demo-8 www.mydomain.com/demo-14 This is my code: RewriteRule ^demo-([0-9]+)/?$ ver.php?id=$1 [L,NC,QS...
asked by 16.04.2017 / 00:48
0
answers

FriendlyUrls do not work for me in hosting

I have a web application that works perfectly on my computer, but when I upload it to the hosting, it does not work showing the message below. My team has Visual Studio 2017, in Windows 10 with IISExpress.    The FriendlyUrls version is 1.0.2...
asked by 06.08.2018 / 14:17
3
answers

Mask port 8080 in url

I'm doing a simple web with spring boot packing it with maven. The .jar that I generated, I have deployed in an instance of AWS. The url is shown with www.geaforestal.net:8080 and of course to leave it as it should be wanted to remove the 808...
asked by 28.07.2016 / 18:03
1
answer

Friendly URL in php

I need help with this problem, I have the following code <?php include 'modules/head.php'; /**Contenido de pagina */ $rutas = array(); if(isset($_GET["ruta"])){ $rutas = explode("/",$_GET["ruta"]); $rutaCategoria = CategoriaControl...
asked by 03.01.2019 / 17:58
0
answers

How do I configure the ejabberd server to access the bosh module in a lan network?

http://localhost:5280/bosh access normally   http://server.com5280/bosh What should I configure to access in this way? I have configured the ejabberd.yml as follows: port: 5280 ip: "::" module: ejabberd_http request_handlers:...
asked by 14.06.2018 / 19:02
1
answer

Url friendly on requests get laravel

How can I make the urls that result from get requests and receive friendly parameters, that is, I have this request: Route::get('buscarParticipante','CarreraController@buscarParticipante')->name('buscar.participante'); And I send the...
asked by 16.07.2018 / 02:03