search

网站服务器是linux系统,运行在阿里云虚拟主机上的,源代码是通过ftp上传修改,网站之前是纯静态的网站,因为需求,自己写了几个php的页面,请问:
1、www.xxxx.com/111.php怎么改成www.xxxx.com/111.html
2、www.xxxx.com/111.php?a=1怎么改成www.xxxx.com/111/1这样的结构或者类似的,反正地址不带?就行
3、www.xxxx.com/111.php?id=1也是改成地址里不带?的结构
伪静态的规则该怎么写啊?


回复讨论(解决方案)

首先你得讲清楚你的规则需求。111.html这里的文件名是固定的?还是任意数字?
原来的静态文件都是什么样的目录结构?
不搞清楚这些,很可能把正常的访问也重定向了。

那个111.php是我打的比方,其实就是想把news.php变成news.html,还有就是news.php?a=1这样的格式变成不带?的格式。

首先你得讲清楚你的规则需求。111.html这里的文件名是固定的?还是任意数字?
原来的静态文件都是什么样的目录结构?
不搞清楚这些,很可能把正常的访问也重定向了。



那个111.php是我打的比方,其实就是想把news.php变成news.html,还有就是news.php?a=1这样的格式变成不带?的格式。

我看你参数名称都不一样,那得一条条写了。
比如
www.xxxx.com/111.php?a=1怎么改成www.xxxx.com/111/1
规则是这样的:
RewriteRule ^111/(.*)$  /111.php?a=$1 [L]

我看你参数名称都不一样,那得一条条写了。
比如
www.xxxx.com/111.php?a=1怎么改成www.xxxx.com/111/1
规则是这样的:
RewriteRule ^111/(.*)$  /111.php?a=$1 [L]



RewriteEngine On
RewriteRule ^news\.html$ news.php
RewriteRule ^news/(.*)$  /news.php?a=$1 [L]
RewriteCond %{HTTP_HOST} !^www.xx网站.com$ [NC]
RewriteRule ^(.*)$ http://www.xx网站.com/$1 [L,R=301]

这是已写的规则,现在url是这样的,www.xx网站.com/news.html,www.xx网站.com/news.html?a=2,我很郁闷,为什么还是不行啊?方便的话可以加您QQ或者微信么?我的QQ:742487438

哪条规则有问题?301那条?

哪条规则有问题?301那条?



301那条没问题,RewriteRule ^news/(.*)$  /news.php?a=$1 [L] 您给我的这条,好像没生效,现在url地址是这样的:www.xx网站.com/news.html?a=2,只是.php变成了.html,但是?还在


哪条规则有问题?301那条?



301那条没问题,RewriteRule ^news/(.*)$  /news.php?a=$1 [L] 您给我的这条,好像没生效,现在url地址是这样的:www.xx网站.com/news.html?a=2,只是.php变成了.html,但是?还在


url重写静态化不是这样用的。
你要访问
www.xx网站.com/news/2
这样的网址

你提问的时候用的网址格式不是很好的么?怎么实际应用又变成参数形式了?



哪条规则有问题?301那条?



301那条没问题,RewriteRule ^news/(.*)$  /news.php?a=$1 [L] 您给我的这条,好像没生效,现在url地址是这样的:www.xx网站.com/news.html?a=2,只是.php变成了.html,但是?还在


url重写静态化不是这样用的。
你要访问
www.xx网站.com/news/2
这样的网址


奥奥,我懂了,真晕,我以为url是自动转换成 www.xx网站.com/news/2 这样的格式,这次明白了,是要自己调用这样的格式啊,太感谢了!
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Explain the concept of session locking.Explain the concept of session locking.Apr 29, 2025 am 12:39 AM

Sessionlockingisatechniqueusedtoensureauser'ssessionremainsexclusivetooneuseratatime.Itiscrucialforpreventingdatacorruptionandsecuritybreachesinmulti-userapplications.Sessionlockingisimplementedusingserver-sidelockingmechanisms,suchasReentrantLockinJ

Are there any alternatives to PHP sessions?Are there any alternatives to PHP sessions?Apr 29, 2025 am 12:36 AM

Alternatives to PHP sessions include Cookies, Token-based Authentication, Database-based Sessions, and Redis/Memcached. 1.Cookies manage sessions by storing data on the client, which is simple but low in security. 2.Token-based Authentication uses tokens to verify users, which is highly secure but requires additional logic. 3.Database-basedSessions stores data in the database, which has good scalability but may affect performance. 4. Redis/Memcached uses distributed cache to improve performance and scalability, but requires additional matching

What is the full form of PHP?What is the full form of PHP?Apr 28, 2025 pm 04:58 PM

The article discusses PHP, detailing its full form, main uses in web development, comparison with Python and Java, and its ease of learning for beginners.

How does PHP handle form data?How does PHP handle form data?Apr 28, 2025 pm 04:57 PM

PHP handles form data using $\_POST and $\_GET superglobals, with security ensured through validation, sanitization, and secure database interactions.

What is the difference between PHP and ASP.NET?What is the difference between PHP and ASP.NET?Apr 28, 2025 pm 04:56 PM

The article compares PHP and ASP.NET, focusing on their suitability for large-scale web applications, performance differences, and security features. Both are viable for large projects, but PHP is open-source and platform-independent, while ASP.NET,

Is PHP a case-sensitive language?Is PHP a case-sensitive language?Apr 28, 2025 pm 04:55 PM

PHP's case sensitivity varies: functions are insensitive, while variables and classes are sensitive. Best practices include consistent naming and using case-insensitive functions for comparisons.

How do you redirect a page in PHP?How do you redirect a page in PHP?Apr 28, 2025 pm 04:54 PM

The article discusses various methods for page redirection in PHP, focusing on the header() function and addressing common issues like "headers already sent" errors.

Explain type hinting in PHPExplain type hinting in PHPApr 28, 2025 pm 04:52 PM

Article discusses type hinting in PHP, a feature for specifying expected data types in functions. Main issue is improving code quality and readability through type enforcement.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.