English 中文(简体)
2. 从卫星领域删除文字压缩站点的档案延伸
原标题:Removal of file extensions from satellite area of wordpress site

I m需要帮助解决一个小的通道问题,I ve进入。

我的场址主要靠言语,安装在根基上。 然而,我向网站引进了一个新领域,这个新领域是用文字语言建造的。 该网站的这一地区位于该场址的地下室。

What I m struggling with is the removal of file extensions for files contained within this directory. I also require a trailing salash and the necessary redirects.

Any help much appreciated!

问题回答

隐瞒PHP档案延期:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php

如果需要,你可以在此增加其他档案延期。

您能否进一步澄清问题? 不知道:

我还需要一条拖车和必要的转头。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签